Skip to content

Commit

Permalink
fix tokenDecimals type for sardine api call
Browse files Browse the repository at this point in the history
  • Loading branch information
SamueleA committed May 28, 2024
1 parent d70ebba commit fb2ae3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/checkout/src/api/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const fetchSardineClientToken = async (
tokenAmount: order.currencyQuantity,
tokenAddress: order.currencyAddress,
tokenSymbol: order.currencySymbol,
tokenDecimals: order.currencyDecimals,
tokenDecimals: Number(order.currencyDecimals),
callData: order.calldata,
}
})
Expand Down

0 comments on commit fb2ae3a

Please sign in to comment.