Skip to content

Commit

Permalink
Fix copy pasta errors
Browse files Browse the repository at this point in the history
  • Loading branch information
CRBl69 committed Nov 25, 2024
1 parent 8f3b66c commit 78251d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/typescript/frontend/src/configs/local-storage-keys.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ const LOCAL_STORAGE_KEYS = {
theme: `${packages.name}_theme`,
language: `${packages.name}_language`,
geoblocking: `${packages.name}_geoblocking`,
settings: `${packages.name}_geoblocking`,
settings: `${packages.name}_settings`,
};

const LOCAL_STORAGE_CACHE_TIME = {
theme: Infinity,
language: Infinity,
geoblocking: 7 * 24 * 60 * 60 * 1000, // 7 days.
settings: Infinity, // 7 days.
settings: Infinity,
};

export type LocalStorageCache<T> = {
Expand Down

0 comments on commit 78251d7

Please sign in to comment.