build fix

This commit is contained in:
alma 2025-05-05 13:07:49 +02:00
parent 197b240109
commit 907adf3f87
2 changed files with 8 additions and 8 deletions

View File

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

7
app/pages/pane-layout.ts Normal file
View File

@ -0,0 +1,7 @@
// Layout modes
export enum PaneLayout {
TagSelection = "tag-selection",
ItemSelection = "item-selection",
TableView = "table-view",
Editing = "editing"
}