From 907adf3f876c68999b067b567c775b464ce6243f Mon Sep 17 00:00:00 2001 From: alma Date: Mon, 5 May 2025 13:07:49 +0200 Subject: [PATCH] build fix --- app/pages/page.tsx | 9 +-------- app/pages/pane-layout.ts | 7 +++++++ 2 files changed, 8 insertions(+), 8 deletions(-) create mode 100644 app/pages/pane-layout.ts diff --git a/app/pages/page.tsx b/app/pages/page.tsx index c3d65aac..81d75911 100644 --- a/app/pages/page.tsx +++ b/app/pages/page.tsx @@ -12,14 +12,7 @@ import { ContactsView } from '@/components/carnet/contacts-view'; import { X, Menu } from "lucide-react"; import { ContactDetails } from '@/components/carnet/contact-details'; import { parse as parseVCard, format as formatVCard } from 'vcard-parser'; - -// Layout modes -export enum PaneLayout { - TagSelection = "tag-selection", - ItemSelection = "item-selection", - TableView = "table-view", - Editing = "editing" -} +import { PaneLayout } from './pane-layout'; interface Note { id: string; diff --git a/app/pages/pane-layout.ts b/app/pages/pane-layout.ts new file mode 100644 index 00000000..2fb89224 --- /dev/null +++ b/app/pages/pane-layout.ts @@ -0,0 +1,7 @@ +// Layout modes +export enum PaneLayout { + TagSelection = "tag-selection", + ItemSelection = "item-selection", + TableView = "table-view", + Editing = "editing" +} \ No newline at end of file