Skip to content

Commit

Permalink
[docs] Fix versions URL
Browse files Browse the repository at this point in the history
Those pages shouldn't be versioned. There is in theory only one up-to-date
version possible at all time.
  • Loading branch information
oliviertassinari committed Sep 8, 2024
1 parent de3817b commit 74afc3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/data/docs/pages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { MuiPage } from 'docs/src/MuiPage';
import standardNavIcons from 'docs/src/modules/components/AppNavIcons';

const pages: readonly MuiPage[] = [
{ pathname: '/versions' },
{ pathname: 'https://mui.com/versions/' },
{
pathname: 'https://mui.com/store/',
title: 'Templates',
Expand All @@ -13,7 +13,7 @@ const pages: readonly MuiPage[] = [
'data-ga-event-label': 'sidenav',
},
},
{ pathname: '/blog', title: 'Blog', icon: standardNavIcons.BookIcon },
{ pathname: 'https://mui.com/blog/', title: 'Blog', icon: standardNavIcons.BookIcon },
];

export default pages;

0 comments on commit 74afc3e

Please sign in to comment.