diff --git a/frontend/src/App.vue b/frontend/src/App.vue index e8d1bb7..eaa6ee9 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -6,6 +6,7 @@ import TorchButton from './components/TorchButton.vue' import FloatingTerminal from './components/FloatingTerminal.vue' import FloatingResponse from './components/FloatingResponse.vue' import FloatingVoice from './components/FloatingVoice.vue' +import FloatingTranscriptDebug from './components/FloatingTranscriptDebug.vue' import AgentBar from './components/AgentBar.vue' import PwaInstallBanner from './components/PwaInstallBanner.vue' import HooksApprovalModal from './components/HooksApprovalModal.vue' @@ -23,6 +24,7 @@ const route = useRoute() const router = useRouter() const showTerminal = ref(false) const showVoice = ref(false) +const showTranscriptDebug = ref(false) const showDebugConsole = ref(false) const toolbarVisible = ref(true) const forceWco = ref(false) @@ -450,7 +452,7 @@ watch(() => route.name, (newPage) => { 'session-start': showSessionStart, notification: showNotification, 'tool-flash': showToolFlash, - 'sheet-open': showTerminal || showVoice, + 'sheet-open': showTerminal || showVoice || showTranscriptDebug, 'keyboard-visible': keyboardVisible }" @click="showTerminal = !showTerminal" @@ -521,10 +523,22 @@ watch(() => route.name, (newPage) => { + + +