Skip to content

Commit

Permalink
Translation settings should be persisted on web (#9581)
Browse files Browse the repository at this point in the history
Unfortunately we cannot migrate this data from session, as it is lost on tab closed.
  • Loading branch information
MGibson1 authored Jun 25, 2024
1 parent 8df054c commit 3f44ead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/common/src/platform/state/state-definitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export const DESKTOP_SETTINGS_DISK = new StateDefinition("desktopSettings", "dis
export const ENVIRONMENT_DISK = new StateDefinition("environment", "disk");
export const ENVIRONMENT_MEMORY = new StateDefinition("environment", "memory");
export const THEMING_DISK = new StateDefinition("theming", "disk", { web: "disk-local" });
export const TRANSLATION_DISK = new StateDefinition("translation", "disk");
export const TRANSLATION_DISK = new StateDefinition("translation", "disk", { web: "disk-local" });

// Secrets Manager

Expand Down

0 comments on commit 3f44ead

Please sign in to comment.