Skip to content

Commit

Permalink
fix: Fix type issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Halibao-Lala committed Dec 10, 2024
1 parent 70fc303 commit a9048f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ export function TransferButton({
// fromTokenAddress: selectedToken.meson?.raw?.addr as `0x${string}`,
fromTokenAddress: fakeFromToken as `0x${string}`,
fromTokenSymbol: selectedToken.meson?.raw?.id as string,
fromTokenDecimals: selectedToken.meson?.raw?.decimals,
fromTokenDecimals: selectedToken.meson?.raw?.decimals as number,
fromChainType: fromChain?.chainType,
toChainType: toChain?.chainType,
toTokenAddress: toToken?.meson?.raw?.addr as `0x${string}`,
Expand Down

0 comments on commit a9048f3

Please sign in to comment.