summaryrefslogtreecommitdiffhomepage
path: root/src/app
diff options
context:
space:
mode:
authorAdam Malczewski <[email protected]>2026-06-07 18:52:13 +0900
committerAdam Malczewski <[email protected]>2026-06-07 18:52:13 +0900
commit80f8a219c89a963c485da0f40dc428bf688fedb7 (patch)
tree737822344118e5c1c840b8399a554a1898f07093 /src/app
parent48c6d85c3cc5a57a729f14068e2346b17ed62088 (diff)
downloaddispatch-web-80f8a219c89a963c485da0f40dc428bf688fedb7.tar.gz
dispatch-web-80f8a219c89a963c485da0f40dc428bf688fedb7.zip
Revert "feat(chat): live turn metrics — telemetry reducer + rendering"
This reverts commit 48c6d85c3cc5a57a729f14068e2346b17ed62088.
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>