diff --git a/src/settingTab/index.ts b/src/settingTab/index.ts index 1500a93..a540be0 100644 --- a/src/settingTab/index.ts +++ b/src/settingTab/index.ts @@ -34,7 +34,6 @@ export class SettingTab extends PluginSettingTab { .setPlaceholder("https://ghost.org") .setValue(this.plugin.settings.url) .onChange(async (value) => { - console.log("API URL: " + value); this.plugin.settings.url = value; await this.plugin.saveSettings(); })