From c5c610c8ea3f49c9726d4065df2dfb1b7eb0235c Mon Sep 17 00:00:00 2001 From: trungbach Date: Thu, 11 Jul 2024 11:41:53 +0700 Subject: [PATCH] update: change default favorite network --- src/stores/useDashboard.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/stores/useDashboard.ts b/src/stores/useDashboard.ts index 3809688b..efe1236a 100644 --- a/src/stores/useDashboard.ts +++ b/src/stores/useDashboard.ts @@ -265,7 +265,8 @@ export enum ConfigSource { export const useDashboard = defineStore('dashboard', { state: () => { const favMap = JSON.parse( - localStorage.getItem('favoriteMap') || '{"cosmos":true, "osmosis":true}' + localStorage.getItem('favoriteMap') || + '{"Oraichain":true,"OraiBtcMainnet":true, "OraiBridge":true, "cosmos":true, "osmosis":true, "injective":true }' ); return { status: LoadingStatus.Empty,