diff --git a/src/frontend/src/stores/userChoices.ts b/src/frontend/src/stores/userChoices.ts index d5ace2ce..b0ce11f8 100644 --- a/src/frontend/src/stores/userChoices.ts +++ b/src/frontend/src/stores/userChoices.ts @@ -12,7 +12,10 @@ export type LocalUserChoices = LocalUserChoicesLK & { } function getUserChoicesState(): LocalUserChoices { - return loadUserChoices() + return { + noiseReductionEnabled: false, + ...loadUserChoices(), + } } export const userChoicesStore = proxy(getUserChoicesState())