summaryrefslogtreecommitdiff
path: root/ui/routes
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2025-02-24 12:26:20 -0500
committerOwen Jacobson <owen@grimoire.ca>2025-02-24 12:26:20 -0500
commit770400bcb5953dcb762b5c80d90e8e26e778b504 (patch)
tree174e258c5f29397bcb51c8762cb1324d13202aa5 /ui/routes
parente561ff74b81209b8e0f0c7cc63861a2ef70d19bf (diff)
Move constant closer to usage
Diffstat (limited to 'ui/routes')
-rw-r--r--ui/routes/(app)/+layout.svelte3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/routes/(app)/+layout.svelte b/ui/routes/(app)/+layout.svelte
index 20620d4..572a551 100644
--- a/ui/routes/(app)/+layout.svelte
+++ b/ui/routes/(app)/+layout.svelte
@@ -8,7 +8,6 @@
import TinyGesture from 'tinygesture';
import { boot, subscribeToEvents } from '$lib/apiServer';
- import { STORE_KEY_LAST_ACTIVE } from '$lib/constants';
import { channelsList, channelsMetaList, currentUser, logins, messages, onEvent } from '$lib/store';
import ChannelList from '$lib/components/ChannelList.svelte';
import CreateChannelForm from '$lib/components/CreateChannelForm.svelte';
@@ -115,6 +114,8 @@
return '';
}
+ const STORE_KEY_LAST_ACTIVE = 'pilcrow:lastActiveChannel';
+
function getLastActiveChannel() {
return (
browser && JSON.parse(localStorage.getItem(STORE_KEY_LAST_ACTIVE))