Skip to content

Commit 0a5801a

Browse files
committed
Missing return type
1 parent f62677c commit 0a5801a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/services/pending-interceptor.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export class PendingInterceptorService implements HttpInterceptor {
5959
});
6060
}
6161

62-
private shouldBypass(req: HttpRequest<any>) {
62+
private shouldBypass(req: HttpRequest<any>): boolean {
6363
return this.shouldBypassUrl(req.urlWithParams)
6464
|| this.shouldBypassMethod(req)
6565
|| this._forceByPass;

0 commit comments

Comments
 (0)