Skip to content

Commit

Permalink
fix: cast transaction object to any type to resolve type issues
Browse files Browse the repository at this point in the history
  • Loading branch information
hugolxt committed Dec 30, 2024
1 parent c341d11 commit 5a9d1f8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/dapp/TransactionButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ export default function TransactionButton({ tx, name, children, onExecute, ...pr
chain: client.chain,
account: user,
...tx,
},
// biome-ignore lint/suspicious/noExplicitAny: Todo wrong type @Clement
} as any,
]);

hash && onExecute?.(hash);
Expand Down

0 comments on commit 5a9d1f8

Please sign in to comment.