-fix url for login and transaction si hemat

This commit is contained in:
Fadli
2022-09-26 14:38:51 +07:00
parent 9b14685a92
commit 45064ee853
3 changed files with 5 additions and 3 deletions

View File

@@ -37,7 +37,7 @@ export const doTransaction = async (
code: `${productCode}`,
type: `${typePaid}`,
};
const res = await axios.post(`${supplier.url}`, data, options);
const res = await axios.post(`${supplier.url}/v1/transaction/request`, data, options);
return res.data;
}