Skip to content

Commit

Permalink
fix: provider 오류 문제 해결 (#945)
Browse files Browse the repository at this point in the history
  • Loading branch information
jinhokim98 authored Jan 15, 2025
1 parent 1c72a5c commit 5293f50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/hooks/useMembersStep.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {BillStep} from './useAddBillFunnel';
import useRequestGetAllMembers from './queries/member/useRequestGetAllMembers';
import useAmplitude from './useAmplitude';
import useMemberName from './useMemberName';
import useEventDataContext from './useEventDataContext';
import useRequestGetEvent from './queries/event/useRequestGetEvent';

interface Props {
billInfo: BillInfo;
Expand All @@ -38,7 +38,7 @@ const useMembersStep = ({billInfo, setBillInfo, setStep}: Props) => {
const {postBill, isSuccess: isSuccessPostBill, isPending: isPendingPostBill} = useRequestPostBill();
const navigate = useNavigate();
const eventId = getEventIdByUrl();
const {eventName} = useEventDataContext();
const {eventName} = useRequestGetEvent();

const {name, handleNameChange, clearMemberName, errorMessage} = useMemberName();

Expand Down

0 comments on commit 5293f50

Please sign in to comment.