Skip to content

Commit

Permalink
[🖥️] - Fixing type mismatch
Browse files Browse the repository at this point in the history
Signed-off-by: Binyamin Yawitz <[email protected]>
  • Loading branch information
byawitz committed Mar 17, 2024
1 parent 6e2b504 commit 77e0b2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/dashboard/src/stores/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ interface LinkosApp {

const useAppStore = defineStore('user', () => {
const user: Ref<UserModel> = ref(new UserModel());
const server: Ref<Server> = ref({ host: '', lang: '' });
const server: Ref<Server> = ref({ host: '', lang: DEFAULT_LANG });
const app: Ref<LinkosApp> = ref({ lang: null, theme: 'system' });

async function loadUser() {
Expand Down

0 comments on commit 77e0b2f

Please sign in to comment.