Troubleshooting `jsonBody` Call Error Due to Type Mismatch in Effect Module

I've got this bit of code, here. The call to jsonBody is erroring with
Argument of type '(self: ClientRequest) => Effect<ClientRequest, BodyError, never>' is not assignable to parameter of type '(b: ClientRequest) => Effect<unknown, unknown, unknown>'.
  Type 'Effect<ClientRequest, BodyError, never>' is missing the following properties from type 'Effect<unknown, unknown, unknown>': [EffectTypeId], [SinkTypeId], [StreamTypeId], [ChannelTypeId]ts(2345)

I suspected duplicate effect modules at first, but I just deduped my node_modules and afaict there's only one effect now 🤔 Is the code wrong somehow?
CleanShot_2024-03-21_at_16.30.592x.png
Was this page helpful?