Skip to content

Commit

Permalink
fixed lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
JatinAgrawal94 committed Jan 6, 2025
1 parent 63dbb67 commit 51d4b4b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/utils/URL.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ export const ENDPOINTS = {
USER_PROFILE_UPDATE: `${APIEndpoint}/userprofile/update`,
ADD_BLUE_SQUARE: userId => `${APIEndpoint}/userprofile/${userId}/addInfringement`,

MODIFY_BLUE_SQUARE: (userId, blueSquareId) => `${APIEndpoint}/userprofile/${userId}/infringements/${blueSquareId}`,
USERS_ALLTEAMCODE_CHANGE : `${APIEndpoint}/AllTeamCodeChanges`,
MODIFY_BLUE_SQUARE: (userId, blueSquareId) =>
`${APIEndpoint}/userprofile/${userId}/infringements/${blueSquareId}`,
USERS_ALLTEAMCODE_CHANGE: `${APIEndpoint}/AllTeamCodeChanges`,
USERS_REMOVE_PROFILE_IMAGE: `${APIEndpoint}/userProfile/profileImage/remove`,
USERS_UPDATE_PROFILE_FROM_WEBSITE: `${APIEndpoint}/userProfile/profileImage/imagefromwebsite`,
USER_PROFILE_BASIC_INFO : `${APIEndpoint}/userProfile/basicInfo`,
USER_PROFILE_BASIC_INFO: `${APIEndpoint}/userProfile/basicInfo`,
USER_AUTOCOMPLETE: searchText => `${APIEndpoint}/userProfile/autocomplete/${searchText}`,

INFO_COLLECTIONS: `${APIEndpoint}/informations`,
Expand Down

0 comments on commit 51d4b4b

Please sign in to comment.