Browse Source

updated footer links

Danny Coates 6 years ago
parent
commit
be8e507d25
2 changed files with 3 additions and 15 deletions
  1. 2 7
      app/ui/footer.js
  2. 1 8
      test/integration/homepage-tests.js

+ 2 - 7
app/ui/footer.js

@@ -31,23 +31,18 @@ class Footer extends Component {
           class="list-reset flex flex-col md:flex-row items-start md:items-center md:justify-end"
         >
           <li class="m-2">
-            <a href="https://www.mozilla.org/about/legal">
+            <a href="https://www.mozilla.org/about/legal/terms/services/#send">
               ${translate('footerLinkLegal')}
             </a>
           </li>
           <li class="m-2">
-            <a href="/legal"> ${translate('footerLinkTerms')} </a>
+            <a href="/legal"> ${translate('footerLinkPrivacy')} </a>
           </li>
           <li class="m-2">
             <a href="https://www.mozilla.org/privacy/websites/#cookies">
               ${translate('footerLinkCookies')}
             </a>
           </li>
-          <li class="m-2">
-            <a href="https://www.mozilla.org/about/legal/report-infringement/">
-              ${translate('reportIPInfringement')}
-            </a>
-          </li>
           <li class="m-2">
             <a href="https://github.com/mozilla/send">GitHub </a>
           </li>

+ 1 - 8
test/integration/homepage-tests.js

@@ -5,14 +5,7 @@ const HomePage = require('./pages/desktop/home_page');
 describe('Firefox Send homepage', function() {
   const homePage = new HomePage();
   const baseUrl = browser.options['baseUrl'];
-  const footerLinks = [
-    'mozilla',
-    'legal',
-    'legal',
-    'cookies',
-    'report-infringement',
-    'github'
-  ];
+  const footerLinks = ['mozilla', 'legal', 'legal', 'cookies', 'github'];
 
   beforeEach(function() {
     homePage.open();