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 1a4017c commit 60d86aaCopy full SHA for 60d86aa
src/app/pending-interceptor.service.ts
@@ -35,7 +35,7 @@ export class PendingInterceptorService implements HttpInterceptor {
35
}
36
37
private shouldBypass(url: string): boolean {
38
- return this._filteredUrlPatterns.some((e: RegExp) => {
+ return this._filteredUrlPatterns.some(e => {
39
return e.test(url);
40
});
41
0 commit comments