mirror of
https://github.com/JackyKLai/kunkun-ext-letterboxd.git
synced 2025-04-03 17:56:44 +00:00
Fix toast bug
This commit is contained in:
parent
3fdc014367
commit
3501790343
@ -59,7 +59,7 @@ class LetterboxdCmd extends TemplateUiCommand {
|
||||
async onFormSubmit(value: Record<string, any>): Promise<void> {
|
||||
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() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user