re added the api url
All checks were successful
Build frontend / build (push) Successful in 48s

This commit is contained in:
mouazkh
2026-06-24 01:32:21 +03:00
parent 13b83e9aea
commit 6e4d629cbe

View File

@ -374,9 +374,10 @@
// // ─── Booking/Reservation Management ───
import AuthService from "../services/AuthService";
// const API_BASE =
// process.env.NEXT_PUBLIC_API_URL || "https://45.93.137.91.nip.io/api";
const API_BASE = process.env.NEXT_PUBLIC_API_URL || "http://45.93.137.91/api";
const API_BASE = // const API_BASE =
process.env.NEXT_PUBLIC_API_URL || "https://45.93.137.91.nip.io/api"; // process.env.NEXT_PUBLIC_API_URL || "https://45.93.137.91.nip.io/api";
const REPORT_API_BASE =
process.env.NEXT_PUBLIC_API_URL || "http://45.93.137.91/api";
function isFormData(value) {
return typeof FormData !== "undefined" && value instanceof FormData;