chore(layout/inline_title): show note type switcher for code notes as well

This commit is contained in:
Elian Doran 2025-12-13 15:55:56 +02:00
parent 86f36922c4
commit 4998560e31
No known key found for this signature in database

View File

@ -159,7 +159,7 @@ function NoteTypeSwitcher() {
const currentNoteTypeData = useMemo(() => NOTE_TYPES.find(t => t.type === currentNoteType), [ currentNoteType ]);
const { builtinTemplates, collectionTemplates } = useBuiltinTemplates();
return (note?.type === "text" &&
return (
<div
className="note-type-switcher"
onWheel={onWheelHorizontalScroll}