signup country bug fixed

This commit was merged in pull request #769.
This commit is contained in:
victorAnumudu
2024-08-07 21:21:24 +01:00
parent a4b85e9c85
commit f4c0c5bf15
+5 -5
View File
@@ -32,7 +32,7 @@ class usersService {
} }
blogData() { blogData() {
return this.getAuxEnd("/blogdata", null); return this.getAuxEnd("/blogdata", {});
} }
CompleteOauthLogin(reqData) { CompleteOauthLogin(reqData) {
@@ -130,7 +130,7 @@ class usersService {
} }
getApiGate() { getApiGate() {
// localStorage.setItem("session_token", ``); // localStorage.setItem("session_token", ``);
return this.postAuxEnd("/apigate", null); return this.postAuxEnd("/apigate", {});
} }
getLoadProfile() { getLoadProfile() {
@@ -141,7 +141,7 @@ class usersService {
page: 0, page: 0,
limit: 100, limit: 100,
}; };
return this.postAuxEnd("/loadprofile", null); return this.postAuxEnd("/loadprofile", {});
} }
getUploadedList() { getUploadedList() {
@@ -791,7 +791,7 @@ class usersService {
// Country Data {GET} // Country Data {GET}
getSignupCountryData() { getSignupCountryData() {
return this.postAuxEnd("/signupcountry", null); return this.postAuxEnd("/signupcountry", {});
} }
// END POINT TO GET BANK NAME // END POINT TO GET BANK NAME
@@ -1529,7 +1529,7 @@ class usersService {
*/ */
getUserReminders() { getUserReminders() {
return this.getAuxEnd("/reminders", null); return this.getAuxEnd("/reminders", {});
} }
//---------------------------------------- ----- //---------------------------------------- -----
//---------------------------------------- ----- //---------------------------------------- -----