Skip to content

Commit

Permalink
feat: log error when sending request
Browse files Browse the repository at this point in the history
  • Loading branch information
dawidsowardx committed Jun 1, 2024
1 parent ec2da62 commit cfe5871
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,10 @@ export const WalletRequestModule = (input: {
}),
)
}),
)
).mapErr((error) => {
logger?.error(error)
return error;
})
}

const setRequestDataState = (...items: DataRequestBuilderItem[]) => {
Expand Down

0 comments on commit cfe5871

Please sign in to comment.