Skip to content

Commit 2f1415c

Browse files
authored
fix: update docs urls in the menu (#2482)
1 parent 7f49837 commit 2f1415c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

cypress/e2e/2-settings/switch-tabs.cy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ describe.skip('Switch tabs in header', () => {
3333

3434
it('step4: Switch from Governance to More', () => {
3535
cy.get('#more-button').click();
36-
checkLinkOfButtons('FAQ', 'https://docs.aave.com/faq/governance');
37-
checkLinkOfButtons('Developers', 'https://docs.aave.com/portal/');
36+
checkLinkOfButtons('FAQ', 'https://aave.com/faq');
37+
checkLinkOfButtons('Developers', 'https://aave.com/docs');
3838
checkLinkOfButtons('Github', 'https://github.com/aave/interface');
3939
});
4040
});

src/ui-config/menu-items/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ interface MoreMenuItem extends Navigation {
6161

6262
const moreMenuItems: MoreMenuItem[] = [
6363
{
64-
link: 'https://docs.aave.com/faq/',
64+
link: 'https://aave.com/faq/',
6565
title: t`FAQ`,
6666
icon: <QuestionMarkCircleIcon />,
6767
},
6868
{
69-
link: 'https://docs.aave.com/portal/',
69+
link: 'https://aave.com/docs/',
7070
title: t`Developers`,
7171
icon: <BookOpenIcon />,
7272
},

0 commit comments

Comments
 (0)