From ceee810e14e1a860608ae9ad10b2970ee84a7969 Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Thu, 20 Mar 2025 15:58:05 +0800 Subject: [PATCH] refactor(page): update import paths for WorkspaceEditorHeader and WorkspaceEditorFooter --- src/app/(app)/problems/[id]/@workspace/@editor/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/(app)/problems/[id]/@workspace/@editor/page.tsx b/src/app/(app)/problems/[id]/@workspace/@editor/page.tsx index 0121588..9d236d5 100644 --- a/src/app/(app)/problems/[id]/@workspace/@editor/page.tsx +++ b/src/app/(app)/problems/[id]/@workspace/@editor/page.tsx @@ -2,8 +2,8 @@ import prisma from "@/lib/prisma"; import { notFound } from "next/navigation"; import { CodeEditor } from "@/components/problem-editor"; import { ProblemEditorProvider } from "@/providers/problem-editor-provider"; -import WorkspaceEditorHeader from "@/components/features/playground/workspace/editor/components/header"; -import WorkspaceEditorFooter from "@/components/features/playground/workspace/editor/components/footer"; +import { WorkspaceEditorHeader } from "@/components/features/playground/workspace/editor/components/header"; +import { WorkspaceEditorFooter } from "@/components/features/playground/workspace/editor/components/footer"; interface WorkspaceEditorProps { params: Promise<{ id: string }>;