signup country bug fixed #769

Merged
ameye merged 1 commits from signup-bug into master 2024-08-07 20:27:54 +00:00
+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", {});
}
//---------------------------------------- -----
//---------------------------------------- -----