benerin lagi

This commit is contained in:
[Valentino Heman Budiarto] 2026-05-29 20:37:21 +07:00
parent c821d9795d
commit 720a36642c
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ export default function ApprovalsPage() {
try {
const token = localStorage.getItem("token");
// Mengambil dari fungsi GetAllBookings di backend
const res = await axios.get("http://172.17.110.6:8080/api/bookings", {
const res = await axios.get("http://172.17.172.17:8080/api/bookings", {
headers: { Authorization: `Bearer ${token}` }
});
setBookings(res.data.data);

View File

@ -36,7 +36,7 @@ export default function HistoryPage() {
const fetchHistory = async (token: string) => {
try {
// PERBAIKAN: Ubah /api/bookings menjadi /api/my-bookings
const response = await axios.get("http://172.17.110.6:8080/api/my-bookings", {
const response = await axios.get("http://172.17.172.17:8080/api/bookings/history", {
headers: { Authorization: `Bearer ${token}` },
});
setBookings(response.data.data || []);