Skip to content

Commit

Permalink
fix: wrong types
Browse files Browse the repository at this point in the history
  • Loading branch information
infiniteflower committed Oct 2, 2024
1 parent 6aaddf5 commit ea07b02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/ducks/bridge/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,8 @@ export const signBridgeTransaction = (
maxPriorityFeePerGas,
}: {
hexChainId: Hex;
maxFeePerGas: string;
maxPriorityFeePerGas: string;
maxFeePerGas: string | undefined;
maxPriorityFeePerGas: string | undefined;
}) => {
const allowance = new BigNumber(
await getBridgeERC20Allowance(
Expand Down

0 comments on commit ea07b02

Please sign in to comment.