Refs #29: Resolving bug where the root path is defaulted to slash

This commit is contained in:
Roland Broekema 2025-06-02 16:13:14 +02:00
parent 8370a633d6
commit 4c3de32a8c

View file

@ -18,7 +18,7 @@ const insightsSettingDefaults = insightsSetting.reduce((acc:Record<string, strin
}, {} as Record<string, string>);
export const DEFAULT_SETTINGS: ContactsPluginSettings = {
contactsFolder: '/',
contactsFolder: '',
defaultHashtag: '',
...insightsSettingDefaults
}