🚨fix: canvas layout 조건 수정

- 견적서, 발전 시뮬레이션 메뉴에도 탭 노출 조건 수정
This commit is contained in:
yoosangwook 2025-01-07 15:50:24 +09:00
parent 1b8c3ef2d5
commit e32fe6fcbd

View File

@ -14,12 +14,12 @@ export default function FloorPlanLayout({ children }) {
<>
<FloorPlanProvider>
<FloorPlan>
{pathname.includes('estimate') || pathname.includes('simulator') ? (
{/* {pathname.includes('estimate') || pathname.includes('simulator') ? (
<div className="canvas-layout">{children}</div>
) : (
<CanvasLayout>{children}</CanvasLayout>
)}
{/* <CanvasLayout>{children}</CanvasLayout> */}
)} */}
<CanvasLayout>{children}</CanvasLayout>
</FloorPlan>
</FloorPlanProvider>
</>