Fix frontend imports and track frontend lib files
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user