Skip to content

Commit

Permalink
fix: default route celo
Browse files Browse the repository at this point in the history
  • Loading branch information
Another-DevX authored and fabianschu committed Apr 21, 2024
1 parent 6203489 commit 71274dd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 14 deletions.
13 changes: 0 additions & 13 deletions src/components/tables/PoolsTable/PoolsTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -281,12 +281,6 @@ function lockedUntil(lockEndDate?: number) {
}
function iconAddresses(pool: Pool) {
console.debug({ pool });
console.debug(
poolMetadata(pool.id)?.hasIcon
? [pool.address]
: orderedTokenAddresses(pool)
);
return poolMetadata(pool.id)?.hasIcon
? [pool.address]
: orderedTokenAddresses(pool);
Expand Down Expand Up @@ -318,13 +312,6 @@ function goToPoolPage(id: string) {
},
});
}
watch(
() => props.data,
() => {
console.debug(props.data[0].name);
}
);
</script>

<template>
Expand Down
2 changes: 1 addition & 1 deletion src/composables/useNetwork.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const NETWORK_ID =
urlNetworkId ||
localStorageNetworkId ||
(Number(import.meta.env.VITE_NETWORK) as Network) ||
Network.MAINNET;
Network.CELO;
if (windowAvailable) localStorage.setItem('networkId', NETWORK_ID.toString());
export const networkSlug = config[NETWORK_ID].slug;
export const networkConfig = config[NETWORK_ID];
Expand Down

0 comments on commit 71274dd

Please sign in to comment.