chore(react/ribbon): finalize note type selection

This commit is contained in:
Elian Doran
2025-08-21 21:01:57 +03:00
parent f45da049b9
commit 5945f2860a
3 changed files with 5 additions and 44 deletions

View File

@@ -119,7 +119,8 @@ export const ALLOWED_NOTE_TYPES = [
"book",
"webView",
"code",
"mindMap"
"mindMap",
"aiChat"
] as const;
export type NoteType = (typeof ALLOWED_NOTE_TYPES)[number];