Skip to content

Commit

Permalink
chore: hide cataclysm-1 (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
k-yang authored Nov 13, 2023
1 parent 8e2776b commit 96220a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/nibiru/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ export const getNetwork = async (url: string): Promise<LocalConfig[]> => {
export const getNibiruChains = async (): Promise<{
[key: string]: LocalConfig;
}> => {
const [itn, main] = await Promise.all([
const [itn] = await Promise.all([
getNetwork(ITN_NETWORKS),
getNetwork(MAIN_NETWORK),
// getNetwork(MAIN_NETWORK),
]);
const chains = main.concat(itn);
const chains = itn;
const chainsObj: { [key: string]: LocalConfig } = {};
chains.forEach((chain) => {
chainsObj[chain.chain_name] = chain;
Expand Down
2 changes: 1 addition & 1 deletion src/stores/useDashboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ export const useDashboard = defineStore('dashboard', {
state: () => {
const favMap = JSON.parse(
localStorage.getItem('favoriteMap') ??
'{"nibiru":true,"nibiru-itn-3":true,"cataclysm-1":true,"nibiru-testnet-1":true}'
'{"nibiru":true,"nibiru-itn-3":true,"nibiru-testnet-1":true}'
);
return {
status: LoadingStatus.Empty,
Expand Down

0 comments on commit 96220a8

Please sign in to comment.