Skip to content

Commit 8361788

Browse files
committed
refactor: apply pull request suggestions
Signed-off-by: Matheus Cruz <[email protected]>
1 parent 1b695c5 commit 8361788

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

timeless-api/src/main/webui/src/app/token.interceptor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const allowedPaths = [
1111
export const tokenInterceptor: HttpInterceptorFn = (req, next) => {
1212
const path = req.url;
1313

14-
if (allowedPaths.some(allowedPath => path.startsWith(allowedPath))) {
14+
if (allowedPaths.some((allowedPath) => path.startsWith(allowedPath))) {
1515
return next(req);
1616
}
1717

0 commit comments

Comments
 (0)