From 2cc33f003f98e5c1a5b6bd98dad020fd87215c8a Mon Sep 17 00:00:00 2001 From: Giuseppe Date: Wed, 7 Mar 2018 19:50:18 +0100 Subject: [PATCH] Update auth.service.ts --- src/app/core/auth/auth.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/core/auth/auth.service.ts b/src/app/core/auth/auth.service.ts index 570a1ed7f9..e6534a03ff 100644 --- a/src/app/core/auth/auth.service.ts +++ b/src/app/core/auth/auth.service.ts @@ -310,7 +310,7 @@ export class AuthService { /** * Set redirect url */ - setRedirectUrl(value: string) { + setRedirectUrl(url: string) { this.store.dispatch(new SetRedirectUrlAction(isNotUndefined(url) ? url : '')); } }