Dawn Chan

Results 1 comments of Dawn Chan

Here's the workaround solution ```typescript pipe( O.Do, O.bind("series", () => getSeriesBySlug(slug)), O.bind("posts", ({ series }) => pipe( series.posts, A.traverse(O.Applicative)((post) => pipe( getPostBySlug(post.post), O.map((innerPost) => ({ ...post, post: innerPost })) )...