We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a145c5 commit 0af6655Copy full SHA for 0af6655
1 file changed
src/lib/components/layout/Sidebar.svelte
@@ -368,6 +368,9 @@
368
navElement.style['-webkit-app-region'] = 'drag';
369
}
370
371
+
372
+ await initChannels();
373
+ await initChatList();
374
});
375
376
chats.subscribe((value) => {
@@ -512,8 +515,6 @@
512
515
<button
513
516
class="flex flex-col flex-1 cursor-[e-resize]"
514
517
on:click={async () => {
- await initChannels();
- await initChatList();
518
showSidebar.set(!$showSidebar);
519
}}
520
>
0 commit comments