Skip to content

Commit 260c0a9

Browse files
committed
fix: remove unused setting
1 parent 0b38016 commit 260c0a9

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

src/obsidian/note-splitter-settings-tab.ts

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,6 @@ export default class NoteSplitterSettingsTab extends PluginSettingTab {
2727
})
2828
);
2929

30-
new Setting(containerEl)
31-
.setName("Group name")
32-
.setDesc("The name of the group folder that split notes will be placed in. A timestamp will be added to this name. e.g. group-1702591910")
33-
.addText((text) =>
34-
text
35-
.setValue(this.plugin.settings.groupFolderName)
36-
.onChange(async (value) => {
37-
this.plugin.settings.groupFolderName = value;
38-
await this.plugin.saveSettings();
39-
})
40-
);
41-
42-
4330
new Setting(containerEl)
4431
.setName("Delimeter")
4532
.setDesc("The delimeter to split by")

0 commit comments

Comments
 (0)