fixed the logic and build the ownerResirvation page
All checks were successful
Build frontend / build (push) Successful in 1m36s

This commit is contained in:
hamzaobed7
2026-08-13 13:58:07 +03:00
parent 4b53669a35
commit 5592d9fbd2
4 changed files with 93 additions and 32 deletions

View File

@ -222,6 +222,9 @@ export async function getReservations() {
return apiFetch("/Reservations/GetAllReservations");
}
export async function getReservation(id) {
return apiFetch(`/Reservations/GetReservation?id=${id}`);
}