table fixed

This commit was merged in pull request #2.
This commit is contained in:
victorAnumudu
2025-09-02 20:07:49 +01:00
parent 607d64c709
commit 691d9e72fe
5 changed files with 116 additions and 95 deletions
+4
View File
@@ -10,6 +10,10 @@ const queryKeys = {
select_loan: ['select-loan'],
approved_loan: ['approved-loan'],
loan_offers: ['loan-offers'],
// new
subscriptions: ['subscriptions'],
billings: ['billings'],
}
export default queryKeys
+1 -1
View File
@@ -69,7 +69,7 @@ export const getBillings = (reqData) => {
}
// FUNCTION TO GET SUBSCRIPTIONS
export const getSubcriptions = (reqData) => {
export const getSubscriptions = (reqData) => {
const postData = { ...reqData }
return getAuxEnd(`/subcriptions`, postData)
}