feat(views/geomap): remove old geo map type

This commit is contained in:
Elian Doran
2025-07-06 20:23:50 +03:00
parent f5a6dfa629
commit 557bfbd1d6
11 changed files with 10 additions and 17 deletions

View File

@@ -1,6 +1,4 @@
import type { AttributeType } from "./rows.js";
type LauncherNoteType = "launcher" | "search" | "doc" | "noteMap" | "contentWidget" | "book" | "file" | "image" | "text" | "relationMap" | "render" | "canvas" | "mermaid" | "webView" | "code" | "mindMap" | "geoMap";
type LauncherNoteType = "launcher" | "search" | "doc" | "noteMap" | "contentWidget" | "book" | "file" | "image" | "text" | "relationMap" | "render" | "canvas" | "mermaid" | "webView" | "code" | "mindMap";
enum Command {
jumpToNote,

View File

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