summaryrefslogtreecommitdiffhomepage
path: root/src/app
diff options
context:
space:
mode:
Diffstat (limited to 'src/app')
-rw-r--r--src/app/App.svelte4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/app/App.svelte b/src/app/App.svelte
index cc9866e..61b4cb9 100644
--- a/src/app/App.svelte
+++ b/src/app/App.svelte
@@ -61,7 +61,9 @@
</div>
<div class="flex-1 overflow-y-auto">
- <ChatView chunks={store.activeChat.chunks} />
+ {#key store.activeConversationId}
+ <ChatView chunks={store.activeChat.chunks} />
+ {/key}
</div>
<Composer onSend={handleSend} />