From 350179034339067feca6c38f6d938d9ca4d0a4f3 Mon Sep 17 00:00:00 2001 From: Jacky Lai Date: Sun, 23 Feb 2025 13:29:26 -0500 Subject: [PATCH] Fix toast bug --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 5382ec6..b390db2 100644 --- a/src/index.ts +++ b/src/index.ts @@ -59,7 +59,7 @@ class LetterboxdCmd extends TemplateUiCommand { async onFormSubmit(value: Record): Promise { await kv.set(USERNAME_KEY, value['clear-username'] ? '' : value.username) this.currentLetterboxdUsername = value.username - toast.success("Letterboxd username " + value['clear-username'] ? 'removed.' : `set to: ${value.username}`) + toast.success(`Letterboxd username ${value['clear-username'] ? 'removed' : 'set to ' + value.username}.`) this.load() } async load() {