Skip to content

Commit

Permalink
Fix: Resolve Conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
MEGUMMY1 committed Jul 13, 2024
1 parent 0847d40 commit fcd0817
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions components/ReservationListCard/ReservationListCard.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
import Image from 'next/image';
import { PrimaryButton } from '../Button/Button';
import { statusStyle, statusTitles } from './reservationStatusInfo';
import { statusType } from '../ReservationFilter/ReservationFilter.types';
import { useModal } from '@/hooks/useModal';
import Review from '../Review/Review';
import { ReservationCardProps } from './ReservationListCard.types';
import { ReservationCardProps } from '../ReservationFilter/myReservationTypes.types';
import { usePopup } from '@/hooks/usePopup';
import { useMutation, useQueryClient } from '@tanstack/react-query';
Expand All @@ -13,10 +11,9 @@ import { useUserData } from '@/hooks/useUserData';
import { formatCurrency } from '@/utils/formatCurrency';
import Link from 'next/link';

const ReservatioListCard = ({ reservationData }: ReservationCardProps) => {
const ReservationListCard = ({ reservationData }: ReservationCardProps) => {
const { openModal, closeModal } = useModal();

const handleCancelReservation = () => {};
const handleOpenReviewModal = () => {
openModal({
title: '후기 작성',
Expand All @@ -25,7 +22,6 @@ const ReservatioListCard = ({ reservationData }: ReservationCardProps) => {
});
};

const ReservationListCard = ({ reservationData }: ReservationCardProps) => {
const { openPopup } = usePopup();
const userData = useUserData();
const queryClient = useQueryClient();
Expand Down

0 comments on commit fcd0817

Please sign in to comment.