Skip to content

Commit

Permalink
[FIX] 사용하지 않는 기능 UI 제거 (#577)
Browse files Browse the repository at this point in the history
* [FIX] 원래 코드 복구 (#568)

* fix: 기존 작업 코드 복구

* fix: build 위해 안쓰는 파일 주석

* [DESIGN] 픽 생성시 zIndex 추가 (#570)

* [FIX] 현재 완전히 구현되지 않은 기능 UI 제거 (#576)

---------

Co-authored-by: kimminkyeu <[email protected]>
  • Loading branch information
dmdgpdi and kimminkyeu authored Nov 25, 2024
1 parent bf8de7d commit 943275e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions frontend/techpick/src/app/(signed)/folders/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { PropsWithChildren, Suspense } from 'react';
import { MessageCircleWarning as MessageCircleWarningIcon } from 'lucide-react';
import { FolderTree, FolderAndPickDndContextProvider } from '@/components';
import { CreatePickPopover } from '@/components/CreatePickPopover/CreatePickPopover';
import { CurrentPathIndicator } from '@/components/FolderPathIndicator/CurrentPathIndicator';
import {
pageContainerLayout,
Expand All @@ -23,7 +22,6 @@ export default function FolderLayout({ children }: PropsWithChildren) {
<Suspense>
<CurrentPathIndicator />
</Suspense>
<CreatePickPopover />
</div>
<div className={ListViewerHeaderBodyLayout}></div>
</div>
Expand Down
2 changes: 0 additions & 2 deletions frontend/techpick/src/components/FolderTree/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import { useEffect } from 'react';
import { folderTreeHeaderTitleLayout } from '@/components/FolderTree/folderTreeHeader.css';
import { Search } from '@/components/Search/Search';
import { useCreateFolderInputStore } from '@/stores/createFolderInputStore';
import { useTreeStore } from '@/stores/dndTreeStore/dndTreeStore';
import { FolderTreeHeader } from './FolderTreeHeader';
Expand All @@ -25,7 +24,6 @@ export function FolderTree() {
return (
<HorizontalResizableContainer>
<div className={treeLayout}>
<Search />
<FolderTreeHeader />
<div className={folderTreeHeaderTitleLayout}>
<h1>내 폴더</h1>
Expand Down

0 comments on commit 943275e

Please sign in to comment.