From 6e4d629cbe6f1955fe92308f5e9ddcc6a952921f Mon Sep 17 00:00:00 2001 From: mouazkh Date: Wed, 24 Jun 2026 01:32:21 +0300 Subject: [PATCH] re added the api url --- app/utils/api.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app/utils/api.js b/app/utils/api.js index 45bdf59..45f98be 100644 --- a/app/utils/api.js +++ b/app/utils/api.js @@ -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;