diff --git a/examples/asset-list-chakra/pages/_app.tsx b/examples/asset-list-chakra/pages/_app.tsx index 00047ad51..463c0f853 100644 --- a/examples/asset-list-chakra/pages/_app.tsx +++ b/examples/asset-list-chakra/pages/_app.tsx @@ -65,6 +65,8 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { signerOptions={signerOptions} > + {/* TODO fix type error */} + {/* @ts-ignore */} diff --git a/examples/asset-list/pages/_app.tsx b/examples/asset-list/pages/_app.tsx index c180e38f7..cbca34beb 100644 --- a/examples/asset-list/pages/_app.tsx +++ b/examples/asset-list/pages/_app.tsx @@ -69,6 +69,8 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { >
+ {/* TODO fix type error */} + {/* @ts-ignore */}
diff --git a/examples/authz/pages/_app.tsx b/examples/authz/pages/_app.tsx index ef289a4c1..3209d0635 100644 --- a/examples/authz/pages/_app.tsx +++ b/examples/authz/pages/_app.tsx @@ -79,6 +79,8 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { minHeight="100dvh" backgroundColor={useColorModeValue('$white', '$background')} > + {/* TODO fix type error */} + {/* @ts-ignore */} diff --git a/examples/contracts/pages/_app.tsx b/examples/contracts/pages/_app.tsx index 40b9b99f4..489e22653 100644 --- a/examples/contracts/pages/_app.tsx +++ b/examples/contracts/pages/_app.tsx @@ -55,6 +55,8 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { }} signerOptions={signerOptions} > + {/* TODO fix type error */} + {/* @ts-ignore */} diff --git a/examples/cosmwasm/pages/_app.tsx b/examples/cosmwasm/pages/_app.tsx index f04da2576..245e71c50 100644 --- a/examples/cosmwasm/pages/_app.tsx +++ b/examples/cosmwasm/pages/_app.tsx @@ -55,6 +55,8 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { }, }} > + {/* TODO fix type error */} + {/* @ts-ignore */} diff --git a/examples/dashboard/pages/_app.tsx b/examples/dashboard/pages/_app.tsx index c93984c6b..1c080f727 100644 --- a/examples/dashboard/pages/_app.tsx +++ b/examples/dashboard/pages/_app.tsx @@ -40,6 +40,8 @@ function MyApp({ Component, pageProps }: AppProps) { }, }} > + {/* TODO fix type error */} + {/* @ts-ignore */} diff --git a/examples/grpc-web-grpc-gateway/pages/_app.tsx b/examples/grpc-web-grpc-gateway/pages/_app.tsx index ba1f49358..8b29b758d 100644 --- a/examples/grpc-web-grpc-gateway/pages/_app.tsx +++ b/examples/grpc-web-grpc-gateway/pages/_app.tsx @@ -39,6 +39,8 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { }} signerOptions={signerOptions} > + {/* TODO fix type error */} + {/* @ts-ignore */} diff --git a/examples/ibc-transfer/pages/_app.tsx b/examples/ibc-transfer/pages/_app.tsx index c180e38f7..cbca34beb 100644 --- a/examples/ibc-transfer/pages/_app.tsx +++ b/examples/ibc-transfer/pages/_app.tsx @@ -69,6 +69,8 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { >
+ {/* TODO fix type error */} + {/* @ts-ignore */}
diff --git a/examples/juno/pages/_app.tsx b/examples/juno/pages/_app.tsx index 2f126a0f2..20df72662 100644 --- a/examples/juno/pages/_app.tsx +++ b/examples/juno/pages/_app.tsx @@ -47,6 +47,8 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { }} signerOptions={signerOptions} > + {/* TODO fix type error */} + {/* @ts-ignore */} diff --git a/examples/nft-chakra/pages/_app.tsx b/examples/nft-chakra/pages/_app.tsx index 8687ddc3f..350a514b6 100644 --- a/examples/nft-chakra/pages/_app.tsx +++ b/examples/nft-chakra/pages/_app.tsx @@ -59,6 +59,8 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { signerOptions={signerOptions} > + {/* TODO fix type error */} + {/* @ts-ignore */} diff --git a/examples/nft/pages/_app.tsx b/examples/nft/pages/_app.tsx index a90d95a75..1949ac808 100644 --- a/examples/nft/pages/_app.tsx +++ b/examples/nft/pages/_app.tsx @@ -65,6 +65,7 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { > + {/* TODO fix type error */} {/* @ts-ignore */} diff --git a/examples/osmosis-cosmwasm/pages/_app.tsx b/examples/osmosis-cosmwasm/pages/_app.tsx index 91d8717a0..726521ed9 100644 --- a/examples/osmosis-cosmwasm/pages/_app.tsx +++ b/examples/osmosis-cosmwasm/pages/_app.tsx @@ -62,6 +62,8 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { }, }} > + {/* TODO fix type error */} + {/* @ts-ignore */} diff --git a/examples/osmosis/pages/_app.tsx b/examples/osmosis/pages/_app.tsx index 5244a3395..dc9f71ac9 100644 --- a/examples/osmosis/pages/_app.tsx +++ b/examples/osmosis/pages/_app.tsx @@ -51,6 +51,8 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { }} signerOptions={signerOptions} > + {/* TODO fix type error */} + {/* @ts-ignore */} diff --git a/examples/provide-liquidity/pages/_app.tsx b/examples/provide-liquidity/pages/_app.tsx index 27b685a8a..0d4a3ec46 100644 --- a/examples/provide-liquidity/pages/_app.tsx +++ b/examples/provide-liquidity/pages/_app.tsx @@ -65,6 +65,7 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { }} > + {/* TODO fix type error */} {/* @ts-ignore */} diff --git a/examples/rollkit/pages/_app.tsx b/examples/rollkit/pages/_app.tsx index 9ac42adc0..224e38682 100644 --- a/examples/rollkit/pages/_app.tsx +++ b/examples/rollkit/pages/_app.tsx @@ -47,6 +47,8 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { minHeight="100dvh" backgroundColor={useColorModeValue("$white", "$background")} > + {/* TODO fix type error */} + {/* @ts-ignore */} diff --git a/examples/stake-tokens-chakra/pages/_app.tsx b/examples/stake-tokens-chakra/pages/_app.tsx index 75466f771..dbd8ade5a 100644 --- a/examples/stake-tokens-chakra/pages/_app.tsx +++ b/examples/stake-tokens-chakra/pages/_app.tsx @@ -57,6 +57,8 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { signerOptions={signerOptions} > + {/* TODO fix type error */} + {/* @ts-ignore */} diff --git a/examples/stake-tokens/pages/_app.tsx b/examples/stake-tokens/pages/_app.tsx index f6e1bbe98..1c861b7b5 100644 --- a/examples/stake-tokens/pages/_app.tsx +++ b/examples/stake-tokens/pages/_app.tsx @@ -74,6 +74,7 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { minHeight="100dvh" backgroundColor={useColorModeValue('$white', '$background')} > + {/* TODO fix type error */} {/* @ts-ignore */} diff --git a/examples/stargaze/pages/_app.tsx b/examples/stargaze/pages/_app.tsx index 1a020e0e6..61552bbf6 100644 --- a/examples/stargaze/pages/_app.tsx +++ b/examples/stargaze/pages/_app.tsx @@ -47,6 +47,8 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { }} signerOptions={signerOptions} > + {/* TODO fix type error */} + {/* @ts-ignore */} diff --git a/examples/swap-tokens-chakra/pages/_app.tsx b/examples/swap-tokens-chakra/pages/_app.tsx index 5e0f40341..b7c249c91 100644 --- a/examples/swap-tokens-chakra/pages/_app.tsx +++ b/examples/swap-tokens-chakra/pages/_app.tsx @@ -64,6 +64,8 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { signerOptions={signerOptions} > + {/* TODO fix type error */} + {/* @ts-ignore */} diff --git a/examples/swap-tokens/pages/_app.tsx b/examples/swap-tokens/pages/_app.tsx index d7e20d8b4..7b01c8872 100644 --- a/examples/swap-tokens/pages/_app.tsx +++ b/examples/swap-tokens/pages/_app.tsx @@ -68,6 +68,7 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { > + {/* TODO fix type error */} {/* @ts-ignore */} diff --git a/examples/tailwindcss/pages/_app.tsx b/examples/tailwindcss/pages/_app.tsx index 2c6568bbc..2cc0ced5f 100644 --- a/examples/tailwindcss/pages/_app.tsx +++ b/examples/tailwindcss/pages/_app.tsx @@ -40,6 +40,8 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { >
+ {/* TODO fix type error */} + {/* @ts-ignore */}
diff --git a/examples/telescope-with-contracts/pages/_app.tsx b/examples/telescope-with-contracts/pages/_app.tsx index d0a18296b..b9703c108 100644 --- a/examples/telescope-with-contracts/pages/_app.tsx +++ b/examples/telescope-with-contracts/pages/_app.tsx @@ -60,6 +60,8 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { signerOptions={signerOptions} > + {/* TODO fix type error */} + {/* @ts-ignore */} diff --git a/examples/telescope/pages/_app.tsx b/examples/telescope/pages/_app.tsx index 01a5cbc7f..558d0d682 100644 --- a/examples/telescope/pages/_app.tsx +++ b/examples/telescope/pages/_app.tsx @@ -61,6 +61,8 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { }} signerOptions={signerOptions} > + {/* TODO fix type error */} + {/* @ts-ignore */} {/* */} diff --git a/examples/vote-proposal-chakra/pages/_app.tsx b/examples/vote-proposal-chakra/pages/_app.tsx index 5e866f097..75a6e1d90 100644 --- a/examples/vote-proposal-chakra/pages/_app.tsx +++ b/examples/vote-proposal-chakra/pages/_app.tsx @@ -49,6 +49,8 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { signerOptions={signerOptions} > + {/* TODO fix type error */} + {/* @ts-ignore */} diff --git a/examples/vote-proposal/pages/_app.tsx b/examples/vote-proposal/pages/_app.tsx index 4992b3e9a..63fa7cdf6 100644 --- a/examples/vote-proposal/pages/_app.tsx +++ b/examples/vote-proposal/pages/_app.tsx @@ -59,6 +59,7 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { minHeight="100dvh" backgroundColor={useColorModeValue('$white', '$background')} > + {/* TODO fix type error */} {/* @ts-ignore */} diff --git a/templates/connect-chain/pages/_app.tsx b/templates/connect-chain/pages/_app.tsx index 35d45add1..0018192c8 100644 --- a/templates/connect-chain/pages/_app.tsx +++ b/templates/connect-chain/pages/_app.tsx @@ -47,6 +47,8 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { minHeight="100dvh" backgroundColor={useColorModeValue("$white", "$background")} > + {/* TODO fix type error */} + {/* @ts-ignore */}