I guess that user in tap has type of { user: UserModel }.
If so, then it is either tap(({ user }) => ...) (with curly braces around user) or something like this:
tap(response => {
const user = response.user
console.log('UserService.user tap', user)
this.store.dispatch(StoreUser({user}))
})