From 7b10670a8832bf2969e530fddcd4241c7bca39c8 Mon Sep 17 00:00:00 2001 From: Joscha Date: Mon, 10 Feb 2025 15:42:21 +0100 Subject: [PATCH] Fix eslint warnings --- gdn-app/src/components/CNavbar.vue | 4 +++- gdn-app/src/components/CNavbarDropdown.vue | 2 +- gdn-app/src/components/CNote.vue | 2 +- gdn-app/src/components/CNoteEditor.vue | 4 ++-- gdn-app/src/lib/path.ts | 12 +++++++++--- gdn-app/src/stores/notes.ts | 5 +++-- 6 files changed, 19 insertions(+), 10 deletions(-) diff --git a/gdn-app/src/components/CNavbar.vue b/gdn-app/src/components/CNavbar.vue index 0bb8cbc..8d64965 100644 --- a/gdn-app/src/components/CNavbar.vue +++ b/gdn-app/src/components/CNavbar.vue @@ -41,7 +41,9 @@ function createSomeNotes() { .map(({ it }) => it); } -onMounted(() => createSomeNotes()); +onMounted(() => { + createSomeNotes(); +});