chore: format

This commit is contained in:
Timothy J. Baek
2024-05-18 15:02:47 -07:00
parent 1b6700425a
commit 1e6ddb2fb3
35 changed files with 112 additions and 10 deletions

View File

@@ -79,7 +79,7 @@
const toggleChangeChatDirection = async () => {
chatDirection = chatDirection === 'LTR' ? 'RTL' : 'LTR';
saveSettings({chatDirection});
saveSettings({ chatDirection });
};
const updateInterfaceHandler = async () => {
@@ -271,7 +271,7 @@
on:click={toggleChangeChatDirection}
type="button"
>
{#if chatDirection === 'LTR'}
{#if chatDirection === 'LTR'}
<span class="ml-2 self-center">{$i18n.t('LTR')}</span>
{:else}
<span class="ml-2 self-center">{$i18n.t('RTL')}</span>