diff options
| author | FIN-IT_AndriFP <andrifebriyadiputra@gmail.com> | 2026-02-15 19:59:51 +0700 |
|---|---|---|
| committer | FIN-IT_AndriFP <andrifebriyadiputra@gmail.com> | 2026-02-15 19:59:51 +0700 |
| commit | 7ef19bc5b5dc64fc0fb8126cec02943f06a4237a (patch) | |
| tree | f08870e3497d06d484543adc754de592aa649456 | |
| parent | 3566e7abaad39133162427b6bfe29213c9d5a3d7 (diff) | |
fix
| -rw-r--r-- | src/lib/checkout/components/SectionExpedition.jsx | 3 | ||||
| -rw-r--r-- | src/lib/checkout/components/SectionQuotationExpedition.jsx | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/checkout/components/SectionExpedition.jsx b/src/lib/checkout/components/SectionExpedition.jsx index 001f5006..16a2c664 100644 --- a/src/lib/checkout/components/SectionExpedition.jsx +++ b/src/lib/checkout/components/SectionExpedition.jsx @@ -249,7 +249,8 @@ export default function SectionExpedition({ products }) { const fetchExpedition = async () => { let body = { ...destination, - couriers: process.env.NEXT_PUBLIC_BITESHIP_CODE_COURIERS, + couriers: + 'gojek,grab,deliveree,lalamove,jne,ninja,lion,rara,sicepat,jnt,idexpress,rpx,wahana,jdl,pos,anteraja,sap,paxel,borzo', items: items, }; try { diff --git a/src/lib/checkout/components/SectionQuotationExpedition.jsx b/src/lib/checkout/components/SectionQuotationExpedition.jsx index 926c291b..718e096c 100644 --- a/src/lib/checkout/components/SectionQuotationExpedition.jsx +++ b/src/lib/checkout/components/SectionQuotationExpedition.jsx @@ -155,7 +155,7 @@ export default function SectionExpeditionQuotation({ products }) { const fetchExpedition = async () => { const body = { ...destination, - couriers: process.env.NEXT_PUBLIC_BITESHIP_CODE_COURIERS, + couriers: 'gojek,grab,deliveree,lalamove,jne,ninja,lion,rara,sicepat,jnt,idexpress,rpx,wahana,jdl,pos,anteraja,sap,paxel,borzo', items, }; const response = await axios.get(`/api/biteship-service`, { |
