diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2025-02-24 12:27:24 -0500 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2025-02-24 12:27:24 -0500 |
| commit | f2c415dd7eb1cb68e18e96dfd70460f8972ee9df (patch) | |
| tree | 78afeed891a31dadedd8e506b0d523959e7f8be2 /ui/lib/store.js | |
| parent | 770400bcb5953dcb762b5c80d90e8e26e778b504 (diff) | |
npm run fmt
Diffstat (limited to 'ui/lib/store.js')
| -rw-r--r-- | ui/lib/store.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ui/lib/store.js b/ui/lib/store.js index afced4c..57b5cce 100644 --- a/ui/lib/store.js +++ b/ui/lib/store.js @@ -6,9 +6,8 @@ import { Logins } from '$lib/store/logins'; import { STORE_KEY_CHANNELS_DATA } from '$lib/constants'; // Get channelsList content from the local storage -const channelsMetaData = ( - browser && JSON.parse(localStorage.getItem(STORE_KEY_CHANNELS_DATA)) -) || {}; +const channelsMetaData = + (browser && JSON.parse(localStorage.getItem(STORE_KEY_CHANNELS_DATA))) || {}; export const currentUser = writable(null); export const logins = writable(new Logins()); |
