Skip to content

Commit

Permalink
fix mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueHorn07 committed Dec 24, 2023
1 parent b15e639 commit e3b25ed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pages/reservation/index.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { useEffect } from 'react';
import { useEffect, useState } from 'react';

import { PoPoAxios } from '@/utils/axios.instance';
import ReservationLayout from '@/components/reservation/reservation.layout'
Expand Down Expand Up @@ -27,10 +27,10 @@ const ReservationPage = ({
}

Promise.all([
getCurrentPlaceReservations,
getCurrentEquipReservations,
getCurrentPlaceReservations(),
getCurrentEquipReservations(),
]).then(() => setIsLoading(false));
})
}, [])


return (
Expand Down

0 comments on commit e3b25ed

Please sign in to comment.