You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have found an issue with HelloWorldService.js in which there's a commented code in executeBasicAuthenticationService this code will not comment make it uncommented otherwise it'll not sent the token.
We can comment code in retrieveHelloWorldPathVaraible instead.
I have found an issue with HelloWorldService.js in which there's a commented code in executeBasicAuthenticationService this code will not comment make it uncommented otherwise it'll not sent the token.
We can comment code in retrieveHelloWorldPathVaraible instead.
export const retrieveHelloWorldPathVariable = (username, token) =>
apiClient.get(
/hello-world/path-variable/${username}
, {/* headers: { //can be commented
Authorization: token,
}, */
});
export const executeBasicAuthenticationService = (token) =>
apiClient.get(
/basicauth
, /{ //Can't be commentedheaders: { /Can't be commented
Authorization: token,
},/
});
The text was updated successfully, but these errors were encountered: