Skip to content

Commit 85d7490

Browse files
author
Eason Smith
committed
CreateCosmosApp -> CreateInterchainApp
1 parent be07737 commit 85d7490

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
lines changed

boilerplates/website/pages/_app.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
useTheme,
1010
} from "@interchain-ui/react";
1111

12-
function CreateCosmosApp({ Component, pageProps }: AppProps) {
12+
function CreateInterchainApp({ Component, pageProps }: AppProps) {
1313
const { themeClass } = useTheme();
1414

1515
return (
@@ -26,4 +26,4 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) {
2626
);
2727
}
2828

29-
export default CreateCosmosApp;
29+
export default CreateInterchainApp;

examples/authz/pages/_app.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const queryClient = new QueryClient({
3535
},
3636
});
3737

38-
function CreateCosmosApp({ Component, pageProps }: AppProps) {
38+
function CreateInterchainApp({ Component, pageProps }: AppProps) {
3939
const { themeClass } = useTheme();
4040

4141
return (
@@ -88,4 +88,4 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) {
8888
);
8989
}
9090

91-
export default CreateCosmosApp;
91+
export default CreateInterchainApp;

examples/ibc-asset-list/pages/_app.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const queryClient = new QueryClient({
2121
},
2222
});
2323

24-
function CreateCosmosApp({ Component, pageProps }: AppProps) {
24+
function CreateInterchainApp({ Component, pageProps }: AppProps) {
2525
const { themeClass } = useTheme();
2626

2727
return (
@@ -52,4 +52,4 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) {
5252
);
5353
}
5454

55-
export default CreateCosmosApp;
55+
export default CreateInterchainApp;

examples/injective/pages/_app.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const queryClient = new QueryClient({
2424
},
2525
});
2626

27-
function CreateCosmosApp({ Component, pageProps }: AppProps) {
27+
function CreateInterchainApp({ Component, pageProps }: AppProps) {
2828
const { themeClass } = useTheme();
2929

3030
return (
@@ -71,4 +71,4 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) {
7171
);
7272
}
7373

74-
export default CreateCosmosApp;
74+
export default CreateInterchainApp;

examples/stake-tokens/pages/_app.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const queryClient = new QueryClient({
2828
},
2929
});
3030

31-
function CreateCosmosApp({ Component, pageProps }: AppProps) {
31+
function CreateInterchainApp({ Component, pageProps }: AppProps) {
3232
const { themeClass } = useTheme();
3333

3434
return (
@@ -60,4 +60,4 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) {
6060
);
6161
}
6262

63-
export default CreateCosmosApp;
63+
export default CreateInterchainApp;

examples/vote-proposal/pages/_app.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const queryClient = new QueryClient({
2626
},
2727
});
2828

29-
function CreateCosmosApp({ Component, pageProps }: AppProps) {
29+
function CreateInterchainApp({ Component, pageProps }: AppProps) {
3030
const { themeClass } = useTheme();
3131

3232
return (
@@ -57,4 +57,4 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) {
5757
);
5858
}
5959

60-
export default CreateCosmosApp;
60+
export default CreateInterchainApp;

templates/chain-template/pages/_app.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const queryClient = new QueryClient({
2222
},
2323
});
2424

25-
function CreateCosmosApp({ Component, pageProps }: AppProps) {
25+
function CreateInterchainApp({ Component, pageProps }: AppProps) {
2626
const { themeClass } = useTheme();
2727

2828
return (
@@ -68,4 +68,4 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) {
6868
);
6969
}
7070

71-
export default CreateCosmosApp;
71+
export default CreateInterchainApp;

templates/connect-chain/pages/_app.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const chain = chains.find((chain) => chain.chainName === 'cosmoshub')!
1717

1818
console.log('keplrWallet', keplrWallet)
1919

20-
function CreateCosmosApp({ Component, pageProps }: AppProps) {
20+
function CreateInterchainApp({ Component, pageProps }: AppProps) {
2121
const { themeClass } = useTheme();
2222

2323
return (
@@ -45,4 +45,4 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) {
4545
);
4646
}
4747

48-
export default CreateCosmosApp;
48+
export default CreateInterchainApp;

templates/connect-multi-chain/pages/_app.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
useTheme,
1414
} from '@interchain-ui/react';
1515

16-
function CreateCosmosApp({ Component, pageProps }: AppProps) {
16+
function CreateInterchainApp({ Component, pageProps }: AppProps) {
1717
const { themeClass } = useTheme();
1818

1919
return (
@@ -52,4 +52,4 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) {
5252
);
5353
}
5454

55-
export default CreateCosmosApp;
55+
export default CreateInterchainApp;

0 commit comments

Comments
 (0)