From f2c415dd7eb1cb68e18e96dfd70460f8972ee9df Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Mon, 24 Feb 2025 12:27:24 -0500 Subject: npm run fmt --- ui/lib/store.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'ui/lib/store.js') 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()); -- cgit v1.2.3