Skip to content

Commit 60d86aa

Browse files
committed
Unnecessary type hint
1 parent 1a4017c commit 60d86aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/pending-interceptor.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export class PendingInterceptorService implements HttpInterceptor {
3535
}
3636

3737
private shouldBypass(url: string): boolean {
38-
return this._filteredUrlPatterns.some((e: RegExp) => {
38+
return this._filteredUrlPatterns.some(e => {
3939
return e.test(url);
4040
});
4141
}

0 commit comments

Comments
 (0)