Skip to content

Commit ae6473d

Browse files
authored
fix: remove hard-coded "weekly" in folder creation prompt (#343)
1 parent 319276a commit ae6473d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/telekasten.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ local function create_note_from_template(
512512

513513
-- now write the output file, substituting vars line by line
514514
local file_dir = filepath:match("(.*/)") or ""
515-
check_dir_and_ask(file_dir, "Create weekly dir", function(dir_succeed)
515+
check_dir_and_ask(file_dir, "Notes", function(dir_succeed)
516516
if dir_succeed == false then
517517
return
518518
end

0 commit comments

Comments
 (0)