summaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-10-29 01:58:40 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-10-29 01:58:40 +0000
commit5202c4b56d9565c7ac0c2a62255763462cef0d3d (patch)
treecce1b09818dc4e1b0787b477f0b37dfb40c27245 /components
parent5b0994f2af11c77b61ac59df6211ccb20fae4d44 (diff)
(임수민) 데이터룸 요청사항 반영
Diffstat (limited to 'components')
-rw-r--r--components/layout/HeaderSimple.tsx8
1 files changed, 5 insertions, 3 deletions
diff --git a/components/layout/HeaderSimple.tsx b/components/layout/HeaderSimple.tsx
index f6f60342..425bf796 100644
--- a/components/layout/HeaderSimple.tsx
+++ b/components/layout/HeaderSimple.tsx
@@ -116,9 +116,11 @@ export function HeaderSimple() {
{/* 우측 영역 - 고정 너비와 우선순위로 항상 표시되도록 함 */}
<div className="ml-auto flex flex-shrink-0 items-center space-x-2">
{/* 데스크탑에서는 CommandMenu, 모바일에서는 검색 아이콘만 */}
- <div className="hidden md:block md:w-auto">
- <CommandMenu />
- </div>
+ {!pathname?.includes("/partners/data-room") && (
+ <div className="hidden md:block md:w-auto">
+ <CommandMenu />
+ </div>
+ )}
{/* <Button variant="ghost" size="icon" className="md:hidden" aria-label="Search">
<SearchIcon className="h-5 w-5" />
</Button> */}