Skip to content

Commit cb5970c

Browse files
committed
[#64] fix: 빌드에러 수정
1 parent 8b0b366 commit cb5970c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/components/FloatingBox/BookingInterface.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import PriceDisplay from './PriceDisplay';
77
import TimeSelector from './TimeSelector';
88
import TotalPriceDisplay from './TotalPriceDisplay';
99
import BookingModal from '@/ui/BookingModal';
10-
import { useState } from 'react';
1110
import DatePicker from '../DatePicker/DatePicker';
1211
import Button from '../Button';
1312

@@ -18,7 +17,6 @@ export default function BookingInterface() {
1817
const setIsOpen = useBookingStore((state) => state.setIsOpen);
1918
const { selectedDate, selectedTime, participants } = useBookingStore();
2019

21-
2220
return (
2321
<div className='w-full max-w-sm'>
2422
{/* PC */}
@@ -68,7 +66,7 @@ export default function BookingInterface() {
6866
</div>
6967

7068
{/* 모바일 */}
71-
<div className='fixed bottom-0 left-0 right-0 z-100 block border border-gray-200 bg-white p-6 md:hidden'>
69+
<div className='fixed right-0 bottom-0 left-0 z-100 block border border-gray-200 bg-white p-6 md:hidden'>
7270
<div className='mb-6 flex items-start justify-between'>
7371
<div className='flex-1'>
7472
<div className='mb-1 text-xl font-bold text-gray-900'>

0 commit comments

Comments
 (0)