Skip to content

Commit ac8a752

Browse files
author
Jakob Schlanstedt
committed
refactor(note_create) use correct terminology link not url
1 parent d901bab commit ac8a752

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/client/src/services/note_create.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ async function createNoteFromAction(
176176
}
177177
case CreateNoteAction.CreateChildNote: {
178178
if (!parentNoteLink) {
179-
console.warn("Missing parentNotePath in createNoteFromCkEditor()");
179+
console.warn("Missing parentNoteLink in createNoteFromCkEditor()");
180180
return { note: null, branch: undefined };
181181
}
182182

@@ -193,7 +193,7 @@ async function createNoteFromAction(
193193
}
194194
case CreateNoteAction.CreateAndLinkChildNote: {
195195
if (!parentNoteLink) {
196-
console.warn("Missing parentNotePath in createNoteFromCkEditor()");
196+
console.warn("Missing parentNoteLink in createNoteFromCkEditor()");
197197
return { note: null, branch: undefined };
198198
}
199199
const resp = await createNote(

0 commit comments

Comments
 (0)