From 5a3c7d71b0ffcaccecca2e7c4c42267fa66a69c1 Mon Sep 17 00:00:00 2001 From: rstubryan Date: Tue, 9 Dec 2025 17:48:03 +0700 Subject: [PATCH] refactor(FE-345): HPP ekspedisi API path to use /closings --- src/services/api/closing.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/api/closing.ts b/src/services/api/closing.ts index 8e2f784c..88cdc68c 100644 --- a/src/services/api/closing.ts +++ b/src/services/api/closing.ts @@ -31,7 +31,7 @@ export class ClosingApiService extends BaseApiService< id: number ): Promise | undefined> { try { - const getHppEkspedisiPath = `http://localhost:4010/api/closing/${id}/hpp-ekspedisi`; + const getHppEkspedisiPath = `http://localhost:4010/api/closings/${id}/hpp-ekspedisi`; return await this.customRequest>( getHppEkspedisiPath );