pipe(
// ...
Effect.map(x => x.map(validation.parseSubscribed)),
Effect.map(separate),
Effect.flatMap(([errors, results]) =>
// TODO: send errros to Console.log
// and/or Sentry
Effect.succeed(results)
),
// ...
)
pipe(
// ...
Effect.map(x => x.map(validation.parseSubscribed)),
Effect.map(separate),
Effect.flatMap(([errors, results]) =>
// TODO: send errros to Console.log
// and/or Sentry
Effect.succeed(results)
),
// ...
)