Sfoglia il codice sorgente

Merge branch 'master' of http://git.choozmo.com:3000/ai-anchor/video-maker

tomoya 1 anno fa
parent
commit
1716da01fb
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      frontend/src/api.ts

+ 1 - 1
frontend/src/api.ts

@@ -138,6 +138,6 @@ export const api = {
   async ecpayPaymentHTML(token: string, amount: number) {
     const formData = new FormData();
     formData.append("amount", amount.toString());
-    return axios.post<string>(`${apiUrl}/api/v1/payment/ecpayVideoCharge`, formData, authHeaders(token))
+    return axios.post<string>(`${apiUrl}/api/v1/payment/ecpayTestPay`, formData, authHeaders(token))
   },
 };