Skip to content

Commit 4b2dd8c

Browse files
fix: use TAppState generic in ConnectAccountRedirectResult type (#733)
1 parent 2f503d3 commit 4b2dd8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/auth0-angular/src/lib/auth.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ export class AuthService<TAppState extends AppState = AppState>
309309
handleRedirectCallback(
310310
url?: string
311311
): Observable<
312-
RedirectLoginResult<TAppState> | ConnectAccountRedirectResult<AppState>
312+
RedirectLoginResult<TAppState> | ConnectAccountRedirectResult<TAppState>
313313
> {
314314
return defer(() =>
315315
this.auth0Client.handleRedirectCallback<TAppState>(url)

0 commit comments

Comments
 (0)