Skip to content

Commit

Permalink
remove usages of zio succeed now (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgfraser authored Jul 1, 2023
1 parent fb79967 commit 7e3dd1d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ private[webhooks] object DequeueUtils {

override def take(implicit trace: Trace): UIO[A] =
d.take.flatMap { b =>
if (f(b)) ZIO.succeedNow(b)
if (f(b)) ZIO.succeed(b)
else take
}

Expand Down

0 comments on commit 7e3dd1d

Please sign in to comment.