fix: update default name to use i18n translation

This commit is contained in:
viruz 2025-09-02 10:30:19 -03:00
parent 22c4ef4fb0
commit a980af3ca4

View file

@ -14,7 +14,7 @@
import VoiceRecording from '$lib/components/chat/MessageInput/VoiceRecording.svelte';
export let show = false;
let name = 'Untitled';
let name = $i18n.t('Untitled');
let content = '';
let voiceInput = false;