Skip to content

Commit 31b9081

Browse files
committed
fix: 미사용 import 제거
1 parent ef98f2b commit 31b9081

File tree

1 file changed

+1
-25
lines changed

1 file changed

+1
-25
lines changed

src/pages/imageSetup/v2/FloorPlanSelectTest.tsx

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
* TODO: 검증 완료 후 이 파일 + router.tsx 테스트 경로 삭제
1616
*/
1717

18-
import { useState } from 'react';
19-
2018
import FloorPlanSelectStep from './steps/floorPlanSelect/FloorPlanSelectStep';
2119

2220
import type { CompletedFloorPlan } from '../types/funnel/steps';
@@ -33,29 +31,7 @@ const handleNext = (data: CompletedFloorPlan) => {
3331
};
3432

3533
const FloorPlanSelectTest = () => {
36-
const [isDragSheetOpen, setIsDragSheetOpen] = useState(true);
37-
38-
return (
39-
<>
40-
<FloorPlanSelectStep context={MOCK_CONTEXT} onNext={handleNext} />
41-
{/*
42-
<DragHandleBottomSheet
43-
open={isDragSheetOpen}
44-
contentSlot={
45-
<p style={{ padding: '1.6rem' }}>DragHandle 테스트 콘텐츠</p>
46-
}
47-
primaryButton={
48-
<ActionButton
49-
size="2XL"
50-
fullWidth
51-
onClick={() => setIsDragSheetOpen(false)}
52-
>
53-
확인
54-
</ActionButton>
55-
}
56-
/> */}
57-
</>
58-
);
34+
return <FloorPlanSelectStep context={MOCK_CONTEXT} onNext={handleNext} />;
5935
};
6036

6137
export default FloorPlanSelectTest;

0 commit comments

Comments
 (0)