Skip to content

Commit 1b5b43f

Browse files
committed
fix review issues
1 parent 46c6530 commit 1b5b43f

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

manifest.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,5 @@
66
"description": "Run JavaScript from within your notes.",
77
"author": "Moritz Jung",
88
"authorUrl": "https://mprojectscode.github.io/",
9-
"fundingUrl": "",
109
"isDesktopOnly": false
1110
}

src/Settings.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ export class JsEnginePluginSettingTab extends PluginSettingTab {
2222
return;
2323
}
2424

25-
containerEl.createEl('h2', { text: 'JS Engine Settings' });
2625
containerEl.createEl('p', { text: 'Currently Empty, but there will be stuff here later.' });
2726
}
2827
}

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default class JsEnginePlugin extends Plugin {
2424
async onload(): Promise<void> {
2525
await this.loadSettings();
2626

27-
this.addSettingTab(new JsEnginePluginSettingTab(this.app, this));
27+
// this.addSettingTab(new JsEnginePluginSettingTab(this.app, this));
2828

2929
this.messageManager.initStatusBarItem();
3030

0 commit comments

Comments
 (0)