summaryrefslogtreecommitdiffhomepage
path: root/src/app
diff options
context:
space:
mode:
Diffstat (limited to 'src/app')
-rw-r--r--src/app/App.svelte12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/app/App.svelte b/src/app/App.svelte
index e1d59f9..61b4cb9 100644
--- a/src/app/App.svelte
+++ b/src/app/App.svelte
@@ -1,6 +1,6 @@
<script lang="ts">
import type { InvokeMessage } from "@dispatch/ui-contract";
- import { ChatView, Composer, ModelSelector, TurnSummary } from "../features/chat";
+ import { ChatView, Composer, ModelSelector } from "../features/chat";
import { TabBar } from "../features/tabs";
import { SurfaceView } from "../features/surface-host";
import type { AppStore } from "./store.svelte";
@@ -62,15 +62,7 @@
<div class="flex-1 overflow-y-auto">
{#key store.activeConversationId}
- <ChatView
- chunks={store.activeChat.chunks}
- telemetry={store.activeChat.telemetry}
- currentTurnId={store.activeChat.currentTurnId}
- />
- <TurnSummary
- telemetry={store.activeChat.telemetry}
- turnId={store.activeChat.currentTurnId}
- />
+ <ChatView chunks={store.activeChat.chunks} />
{/key}
</div>