fix: menu index typo

This commit is contained in:
Jo 2025-08-09 11:01:30 +02:00
parent d6a3e94ea7
commit 8d8da91696
Signed by: devthejo
GPG key ID: 00CCA7A92B1D5351

View file

@ -1,6 +1,9 @@
import SectionSeparator from "./SectionSeparator";
import menuItem from "./menuItem";
const index1 = 5;
const index2 = 9;
export default function DrawerItemList(props) {
const { state } = props;
const { index } = state;
@ -17,18 +20,18 @@ export default function DrawerItemList(props) {
const { routes } = state;
const section1 = routes.slice(0, 5);
const section2 = routes.slice(5, 9);
const section3 = routes.slice(9, routes.length);
const section1 = routes.slice(0, index1);
const section2 = routes.slice(index1, index2);
const section3 = routes.slice(index2, routes.length);
return (
<>
<SectionSeparator label="Mon compte" />
{section2.map((props, i) => routeMenuItem(props, i + 5))}
{section2.map((props, i) => routeMenuItem(props, i + index1))}
<SectionSeparator label="Alerter" />
{section1.map((props, i) => routeMenuItem(props, i + 0))}
<SectionSeparator label="Infos pratiques" />
{section3.map((props, i) => routeMenuItem(props, i + 8))}
{section3.map((props, i) => routeMenuItem(props, i + index2))}
</>
);
}