Fix frontend imports and track frontend lib files

This commit is contained in:
2026-03-21 09:22:10 +08:00
parent 83f7a66e32
commit 190cee20bd
8 changed files with 285 additions and 19 deletions

View File

@@ -1,4 +1,4 @@
"use client";
"use client";
import { useParams } from "next/navigation";
import {
@@ -8,10 +8,10 @@ import {
useState,
type MouseEvent as ReactMouseEvent,
} from "react";
import MindmapCanvas from "@/components/MindmapCanvas";
import ChatPanel from "@/components/ChatPanel";
import { getMindmap } from "@/lib/api";
import type { Mindmap } from "@/types/mindmap";
import MindmapCanvas from "../../../components/MindmapCanvas";
import ChatPanel from "../../../components/ChatPanel";
import { getMindmap } from "../../../lib/api";
import type { Mindmap } from "../../../types/mindmap";
type TriggerRequest = {
id: number;