Skip to content

Commit

Permalink
fix: eslint-disable
Browse files Browse the repository at this point in the history
  • Loading branch information
williamluke4 committed Sep 27, 2024
1 parent 2b7e64a commit e47b44d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/dialogs/send-dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ const SendForm = (props: {
functionName: "transfer",
args: [
debouncedRecipientAddress,
parseUnits(debouncedAmount?.toString() ?? "", voucherDetails?.decimals),
// eslint-disable-next-line @typescript-eslint/no-non-null-asserted-optional-chain
parseUnits(debouncedAmount?.toString() ?? "", voucherDetails?.decimals!),
],
query: {
enabled: Boolean(
Expand Down

0 comments on commit e47b44d

Please sign in to comment.