fix(client): note type chooser does not have geo map entry

This commit is contained in:
Elian Doran 2025-01-28 17:02:46 +02:00
parent eaf548f056
commit 687be6d722
No known key found for this signature in database

View File

@ -21,6 +21,7 @@ const NOTE_TYPES = [
{ type: "mermaid", mime: "text/mermaid", title: t("note_types.mermaid-diagram"), selectable: true },
{ type: "book", mime: "", title: t("note_types.book"), selectable: true },
{ type: "webView", mime: "", title: t("note_types.web-view"), selectable: true },
{ type: "geoMap", mime: "application/json", title: t("note_types.geo-map"), selectable: true },
{ type: "code", mime: "text/plain", title: t("note_types.code"), selectable: true }
];