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() {
return this.getAuxEnd("/blogdata", null);
return this.getAuxEnd("/blogdata", {});
}
CompleteOauthLogin(reqData) {
@@ -130,7 +130,7 @@ class usersService {
}
getApiGate() {
// localStorage.setItem("session_token", ``);
return this.postAuxEnd("/apigate", null);
return this.postAuxEnd("/apigate", {});
}
getLoadProfile() {
@@ -141,7 +141,7 @@ class usersService {
page: 0,
limit: 100,
};
return this.postAuxEnd("/loadprofile", null);
return this.postAuxEnd("/loadprofile", {});
}
getUploadedList() {
@@ -791,7 +791,7 @@ class usersService {
// Country Data {GET}
getSignupCountryData() {
return this.postAuxEnd("/signupcountry", null);
return this.postAuxEnd("/signupcountry", {});
}
// END POINT TO GET BANK NAME
@@ -1529,7 +1529,7 @@ class usersService {
*/
getUserReminders() {
return this.getAuxEnd("/reminders", null);
return this.getAuxEnd("/reminders", {});
}
//---------------------------------------- -----
//---------------------------------------- -----