From 3252f5b5b0ee599d6f0d2fbed78f6fc88629aa4a Mon Sep 17 00:00:00 2001 From: Txoldi Date: Sat, 29 Nov 2025 19:29:04 +0100 Subject: [PATCH] fix remaining UI case --- main.ts | 2 +- settings.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main.ts b/main.ts index b8a6577..0f40451 100644 --- a/main.ts +++ b/main.ts @@ -17,7 +17,7 @@ export default class LastFmPlugin extends Plugin { (_evt: MouseEvent) => { if (!this.settings.apiKey || !this.settings.username) { // Defenive coding against missing input settings (API key and user name) - new Notice("Please configure last.fm api key and username in settings → last.fm plugin."); + new Notice("lease configure last.fm API key and username in the settings."); return; } const api = new LastFmApi(this.settings.apiKey, this.settings.username); diff --git a/settings.ts b/settings.ts index f4db5da..ef80a8a 100644 --- a/settings.ts +++ b/settings.ts @@ -30,7 +30,7 @@ export class LastFmSettingTab extends PluginSettingTab { * ---------------------------- */ new Setting(containerEl) .setName('API key') - .setDesc('Your last.fm api key') + .setDesc('Your last.fm API key') .addText(text => text .setValue(this.plugin.settings.apiKey) .onChange(async (value) => {