Skip to content

Commit

Permalink
fix(content-server): Update ':locale/legal/privacy' route
Browse files Browse the repository at this point in the history
Because:
* We are incorrectly redirecting users to legal/terms

This commit:
* Updates content-server router to direct to the correct path

fixes FXA-8050
  • Loading branch information
LZoog authored and chenba committed Jul 24, 2023
1 parent 32dfc2c commit ebcaec1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/fxa-content-server/app/scripts/lib/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ Router = Router.extend({
});
},
':lang/legal/privacy(/)': function () {
this.createReactOrBackboneViewHandler(`legal/terms`, 'pp', {
this.createReactOrBackboneViewHandler('legal/privacy', 'pp', {
contentRedirect: true,
});
},
Expand Down

0 comments on commit ebcaec1

Please sign in to comment.