From a45289e385df5a4a96424d40310381177a6401bb Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Sat, 5 Jul 2025 18:54:22 +0300 Subject: [PATCH] client/context menus/insert note: fix a typo again --- apps/client/src/services/note_types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/services/note_types.ts b/apps/client/src/services/note_types.ts index 9cb848404..8c4bda673 100644 --- a/apps/client/src/services/note_types.ts +++ b/apps/client/src/services/note_types.ts @@ -208,7 +208,7 @@ async function isNewTemplate(templateNoteId) { // Determine the difference in days between now and the template's creation date const age = (new Date().getTime() - creationDate.getTime()) / DAY_LENGTH; - // Return true if the template is at most NEW_TEMPLATE_MIN_AGE days old + // Return true if the template is at most NEW_TEMPLATE_MAX_AGE days old return (age <= NEW_TEMPLATE_MAX_AGE) } else { return false;