@kimafinance/kima-transaction-widget 1.4.0 → 1.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -2585,7 +2585,12 @@ function useBalance() {
2585
2585
  const userAddress = mode === "light" /* light */ ? lightDemoAccounts.EVM : walletAddress;
2586
2586
  const enabled = !!userAddress && !!tokenOptions && !!selectedCoin && pools.length > 0 && isEVMChain2(sourceChain.shortName) && (!!walletProvider || mode === "light" /* light */);
2587
2587
  const { data: allowanceData } = (0, import_react_query3.useQuery)({
2588
- queryKey: ["evmAllowance", userAddress, sourceChain.shortName],
2588
+ queryKey: [
2589
+ "evmAllowance",
2590
+ userAddress,
2591
+ sourceChain.shortName,
2592
+ selectedCoin
2593
+ ],
2589
2594
  queryFn: () => getTokenAllowance({
2590
2595
  tokenOptions,
2591
2596
  selectedCoin,