Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanfranklin committed Nov 22, 2023
1 parent f77b2b0 commit e342bb1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions angular/src/app/app.interceptors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class JwtInterceptor implements HttpInterceptor {
});
}

if(request.url.indexOf(this.envService.apiUrl) > -1) {
if (request.url.indexOf(this.envService.apiUrl) > -1) {
// Add information about what app is making the request
request = request.clone({
setHeaders: {
Expand All @@ -63,7 +63,6 @@ export class JwtInterceptor implements HttpInterceptor {
});
}


if (
request.url.indexOf(this.envService.streetviewEnv.mapillary.apiUrl) > -1 &&
!(request.url.indexOf(this.envService.streetviewEnv.mapillary.tokenUrl) > -1)
Expand Down

0 comments on commit e342bb1

Please sign in to comment.