API URL is no longer logged when changed

This commit is contained in:
Southpaw
2023-08-26 10:56:49 +01:00
parent 055cab976d
commit 11770089b1

View File

@@ -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();
})