mirror of
https://github.com/suitenumerique/meet.git
synced 2026-08-07 09:23:38 +00:00
be54709598
Add STORAGE_KEYS object to centralize localStorage keys, ensuring no key overlaps by maintaining a single source of truth for key declarations across the app. Might be premature, as only the notification store will be persisted.
7 lines
158 B
TypeScript
7 lines
158 B
TypeScript
/**
|
|
* Object containing all localStorage keys used across the app
|
|
*/
|
|
export const STORAGE_KEYS = {
|
|
NOTIFICATIONS: 'app_notification_settings',
|
|
} as const
|