From 0e888d62af1434fef231e11a5c307a5b48a8deb1 Mon Sep 17 00:00:00 2001
From: Matthias Nott <mnott@mnsoft.org>
Date: Sat, 07 Mar 2026 10:49:07 +0100
Subject: [PATCH] feat: singleton audio, transcript reflection, voice persistence
---
components/chat/InputBar.tsx | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/components/chat/InputBar.tsx b/components/chat/InputBar.tsx
index ee2fa20..b002775 100644
--- a/components/chat/InputBar.tsx
+++ b/components/chat/InputBar.tsx
@@ -12,7 +12,7 @@
interface InputBarProps {
onSendText: (text: string) => void;
- onVoiceRecorded: (uri: string) => void;
+ onVoiceRecorded: (uri: string, durationMs?: number) => void;
onReplay: () => void;
isTextMode: boolean;
onToggleMode: () => void;
--
Gitblit v1.3.1