style: remove unnecessary whitespace

This commit is contained in:
2026-08-09 13:09:39 +02:00
committed by Gitea
parent cd1755693b
commit 6bf315e4b8
12 changed files with 28 additions and 30 deletions
@@ -173,15 +173,15 @@ describe('SettingsInput', () => {
await form.trigger('submit');
expect(form.classes('done-button-shown')).toBeFalsy();
await inputElement.setValue('a');
expect(form.classes('done-button-shown')).toBeTruthy();
const store = useSettingsStore();
store.set('input', 'a');
await nextTick();
expect(form.classes('done-button-shown')).toBeFalsy();
await inputElement.setValue('');
store.set('input', '');
await nextTick();