Skip to content

Commit

Permalink
fix product id order
Browse files Browse the repository at this point in the history
  • Loading branch information
danilo-leal committed Apr 30, 2024
1 parent 60981e9 commit fe138b0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/src/components/header/HeaderNavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ const Navigation = styled('nav')(({ theme }) => [
const PRODUCT_IDS = [
'product-core',
'product-advanced',
'product-toolpad',
'product-templates',
'product-design',
'product-toolpad',
];

type ProductSubMenuProps = {
Expand Down Expand Up @@ -281,7 +281,7 @@ export default function HeaderNavBar() {
</li>
<li>
<ProductSubMenu
id={PRODUCT_IDS[4]}
id={PRODUCT_IDS[2]}
href={ROUTES.productToolpad}
icon={<IconImage name="product-toolpad" />}
name="Toolpad"
Expand All @@ -291,7 +291,7 @@ export default function HeaderNavBar() {
</li>
<li>
<ProductSubMenu
id={PRODUCT_IDS[2]}
id={PRODUCT_IDS[3]}
href={ROUTES.productTemplates}
icon={<IconImage name="product-templates" />}
name="Templates"
Expand All @@ -300,7 +300,7 @@ export default function HeaderNavBar() {
</li>
<li>
<ProductSubMenu
id={PRODUCT_IDS[3]}
id={PRODUCT_IDS[4]}
href={ROUTES.productDesignKits}
icon={<IconImage name="product-designkits" />}
name="Design Kits"
Expand Down

0 comments on commit fe138b0

Please sign in to comment.