Skip to content

Commit

Permalink
[frontend] Fix default language displayed in settings page.
Browse files Browse the repository at this point in the history
  • Loading branch information
dclause committed Oct 17, 2024
1 parent e7bdcd8 commit b6e8f0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/stores/configurationStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ socketRegister((socket: Socket) => {
export const useConfigStore = defineStore({
id: 'configuration',
state: () => ({
locale: '',
locale: navigator.language.split('-')[0],
mode: HardwareMode.REALTIME,
}),
actions: {
Expand Down

0 comments on commit b6e8f0d

Please sign in to comment.