Skip to content

Commit

Permalink
fix: optional fee fetching
Browse files Browse the repository at this point in the history
  • Loading branch information
MuckT committed Oct 10, 2023
1 parent aa0877e commit 47559d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fees/hooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export function useMaxSendAmount(
) {
dispatch(estimateFee({ feeType, tokenAddress: tokenInfo.address }))
}
}, [tokenInfo, shouldRefresh])
}, [tokenInfo?.tokenId, shouldRefresh])

const celoAddress = useSelector(celoAddressSelector)

Expand Down

0 comments on commit 47559d6

Please sign in to comment.