Compare commits

...

4 Commits

Author SHA1 Message Date
victorAnumudu f4c0c5bf15 signup country bug fixed 2024-08-07 21:21:24 +01:00
ameye a4b85e9c85 Merge branch 'link-name-change' of WrenchBoard/Users-Wrench into master 2024-07-29 12:45:30 +00:00
ameye 6dab5412c7 Merge branch 'location-addition' of WrenchBoard/Users-Wrench into master 2024-07-29 12:45:22 +00:00
victorAnumudu 1bd6064b52 link name changed 2024-07-29 06:32:55 +01:00
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -323,7 +323,7 @@ export default function RightSideBar({ myJobList }) {
{/* name */} {/* name */}
<div> <div>
<p className="text-thin-light-gray text-base font-medium"> <p className="text-thin-light-gray text-base font-medium">
<NavLink to="/offer-interest">Offers Interest</NavLink> <NavLink to="/offer-interest">Interest</NavLink>
</p> </p>
</div> </div>
{/* action */} {/* action */}
+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", {});
} }
//---------------------------------------- ----- //---------------------------------------- -----
//---------------------------------------- ----- //---------------------------------------- -----