From 9b08c5134d0fe41f68ba4313ed04004ab8d1526b Mon Sep 17 00:00:00 2001 From: Saeid Doroudi Date: Thu, 2 May 2024 09:46:57 +0330 Subject: [PATCH] :bug: fix active language detection issue --- src/store/layout.store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/layout.store.ts b/src/store/layout.store.ts index d8b37bb..ab206ba 100644 --- a/src/store/layout.store.ts +++ b/src/store/layout.store.ts @@ -2,7 +2,7 @@ import { acceptHMRUpdate, defineStore } from 'pinia' export const useLayoutStore = defineStore('layout', () => { const collapsed = ref(false) - const activeLanguage = ref('English') + const activeLanguage = ref('en') const isRtl = ref(false) const { t, locale } = useI18n()