This commit is contained in:
Timothy Jaeryang Baek
2025-05-03 22:53:23 +04:00
parent 1d82a1c8c4
commit 4acd278624
11 changed files with 370 additions and 222 deletions

View File

@@ -85,11 +85,11 @@
<VoiceRecording
bind:recording={voiceInput}
className="p-1"
on:cancel={() => {
onCancel={() => {
voiceInput = false;
}}
on:confirm={(e) => {
const { text, filename } = e.detail;
onConfirm={(data) => {
const { text, filename } = data;
content = `${content}${text} `;
voiceInput = false;