We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b695c5 commit 8361788Copy full SHA for 8361788
timeless-api/src/main/webui/src/app/token.interceptor.ts
@@ -11,7 +11,7 @@ const allowedPaths = [
11
export const tokenInterceptor: HttpInterceptorFn = (req, next) => {
12
const path = req.url;
13
14
- if (allowedPaths.some(allowedPath => path.startsWith(allowedPath))) {
+ if (allowedPaths.some((allowedPath) => path.startsWith(allowedPath))) {
15
return next(req);
16
}
17
0 commit comments