Skip to content

Commit 39fb9dc

Browse files
committed
try fix build bug
Signed-off-by: SeeuSim <[email protected]>
1 parent 32a77a0 commit 39fb9dc

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"type": "module",
55
"scripts": {
66
"dev": "env-cmd -f .env.local vite",
7-
"build": "tsc -b && vite build",
7+
"build": "tsc -b && DEBUG=vite:* vite build",
88
"lint": "eslint .",
99
"preview": "vite preview --port 5173 --host 0.0.0.0"
1010
},
Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,23 @@
1-
export const AdminEditForm = () => {};
1+
import {
2+
Dialog,
3+
DialogContent,
4+
DialogFooter,
5+
DialogHeader,
6+
DialogTitle,
7+
DialogTrigger,
8+
} from '@/components/ui/dialog';
9+
10+
export const AdminEditForm = () => {
11+
return (
12+
<Dialog>
13+
<DialogTrigger />
14+
<DialogContent>
15+
<DialogHeader>
16+
<DialogTitle />
17+
</DialogHeader>
18+
<DialogContent />
19+
<DialogFooter />
20+
</DialogContent>
21+
</Dialog>
22+
);
23+
};

0 commit comments

Comments
 (0)