chore: format

This commit is contained in:
Timothy J. Baek
2024-08-26 15:38:42 +02:00
parent a9673c793a
commit 7fa9f381e1
43 changed files with 91 additions and 62 deletions

View File

@@ -99,7 +99,9 @@
if (res) {
saveHandler();
getBackendConfig().then(config.set).catch(() => {});
getBackendConfig()
.then(config.set)
.catch(() => {});
}
};
@@ -369,9 +371,11 @@
aria-label="Select how to split message text for TTS requests"
bind:value={TTS_SPLIT_ON}
>
{#each Object.values(TTS_RESPONSE_SPLIT) as split}
<option value={split}>{$i18n.t(split.charAt(0).toUpperCase() + split.slice(1))}</option>
{/each}
{#each Object.values(TTS_RESPONSE_SPLIT) as split}
<option value={split}
>{$i18n.t(split.charAt(0).toUpperCase() + split.slice(1))}</option
>
{/each}
</select>
</div>
</div>