Skip to content

Commit

Permalink
web/multinode: fix My Nodes in multinode dashboard menu
Browse files Browse the repository at this point in the history
It is currently spelled as `MyNodes` whereas it should be `My Nodes`.
  • Loading branch information
odarriba committed May 5, 2022
1 parent 24bbb7f commit bbe7c30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/multinode/src/app/router/index.ts
Expand Up @@ -94,7 +94,7 @@ export class Config {
public static Welcome: Route = new Route('/welcome', 'Welcome', WelcomeScreen);
// nodes.
public static AddFirstNode: Route = new Route('/add-first-node', 'AddFirstNode', AddFirstNode);
public static MyNodes: Route = new Route('/my-nodes', 'MyNodes', MyNodes);
public static MyNodes: Route = new Route('/my-nodes', 'My Nodes', MyNodes);
// payouts.
public static PayoutsSummary: Route = new Route('summary', 'PayoutsSummary', PayoutsPage);
public static PayoutsByNode: Route = new Route('by-node/:id', 'PayoutsByNode', PayoutsByNode);
Expand Down

0 comments on commit bbe7c30

Please sign in to comment.