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

pull/1066/head
Elian Doran 2025-01-28 17:02:46 +07:00
parent eaf548f056
commit 687be6d722
No known key found for this signature in database
1 changed files with 1 additions and 0 deletions

@ -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 }
];