Forgot/Reset Password - Meteor-Angular

Hi,

Having an issue with my meteor-angular application where I’m trying to build out the forgot password flow.
What is currently working is that the user is able to request a password reset from a forgot password component screen.

An email is successfully sent with a token included. Here’s a sample:

Hello,

To reset your password, simply click the link below.

http://localhost:3000/#/reset-password/aAeqI7bWcYsqUDc8vaPV1NwI4o5d3Hq3GtLIgzbHZqW

Thanks.

I’ve created a ResetPasswordComponet and in my routes I’ve set it up as

{ path: 'reset-password/:token', component: ResetComponent }

When the link is clicked the browser goes to the following links:

http://localhost:3000/#/reset-password/aAeqI7bWcYsqUDc8vaPV1NwI4o5d3Hq3GtLIgzbHZqW

http://localhost:3000/#

http://localhost/

Any ideas on what to try to get this working?