refactor(MainContent): remove TaskMasterPanel import and relocate to task-master component

This commit is contained in:
Haileyesus
2026-03-02 23:07:03 +03:00
parent b5f7d2eada
commit d118f9694c
2 changed files with 1 additions and 2 deletions

View File

@@ -8,7 +8,6 @@ import ErrorBoundary from './ErrorBoundary';
import MainContentHeader from './subcomponents/MainContentHeader';
import MainContentStateView from './subcomponents/MainContentStateView';
import TaskMasterPanel from './subcomponents/TaskMasterPanel';
import type { MainContentProps } from '../types/types';
import { useTaskMaster } from '../../../contexts/TaskMasterContext';
@@ -17,6 +16,7 @@ import { useUiPreferences } from '../../../hooks/useUiPreferences';
import { useEditorSidebar } from '../../code-editor/hooks/useEditorSidebar';
import EditorSidebar from '../../code-editor/view/EditorSidebar';
import type { Project } from '../../../types/app';
import { TaskMasterPanel } from '../../task-master';
type TaskMasterContextValue = {
currentProject?: Project | null;

View File

@@ -1 +0,0 @@
export { default } from '../../../task-master/view/TaskMasterPanel';