You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On getCurrentUserEffect function in the auth.effects.ts file the are a type any when response is successfull. Replace with the correct type of the response
this.authService.getCurrentUser().pipe(map(({ data }: any)=>AuthActions.fetchCurrentUserSuccessAction({user: data.user})),catchError(()=>EMPTY))
The text was updated successfully, but these errors were encountered:
On
getCurrentUserEffect
function in theauth.effects.ts
file the are a typeany
when response is successfull. Replace with the correct type of the responseThe text was updated successfully, but these errors were encountered: