Skip to content

Commit

Permalink
🐛 fix active language detection issue
Browse files Browse the repository at this point in the history
  • Loading branch information
doroudi committed May 2, 2024
1 parent cebc852 commit 9b08c51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/layout.store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit 9b08c51

Please sign in to comment.