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 7, 2024
1 parent 09a2dc4 commit 62bc8b6
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 62bc8b6

Please sign in to comment.