Fix: 잘못된 코드 제거

This commit is contained in:
정현조 2024-09-23 14:57:35 +09:00
parent 77523dfa3e
commit 473ff65942
2 changed files with 1 additions and 5 deletions

View File

@ -19,11 +19,6 @@ export default function AdminLayout() {
</ResizablePanel>
<AdminMenuSidebar />
</ResizablePanelGroup>
(
<main className="h-full w-full">
<Outlet />
</main>
)
</div>
</>
);

View File

@ -8,6 +8,7 @@ import { ProjectRequest } from '@/types';
import useAuthStore from '@/stores/useAuthStore';
import ProjectCreateModal from '../ProjectCreateModal';
import { cn } from '@/lib/utils';
export default function AdminProjectSidebar(): JSX.Element {
const location = useLocation();
const navigate = useNavigate();