diff --git a/src/navigation/DrawerNav/DrawerItemList.js b/src/navigation/DrawerNav/DrawerItemList.js
index 92ca50d..71b3f5e 100644
--- a/src/navigation/DrawerNav/DrawerItemList.js
+++ b/src/navigation/DrawerNav/DrawerItemList.js
@@ -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 (
<>
- {section2.map((props, i) => routeMenuItem(props, i + 5))}
+ {section2.map((props, i) => routeMenuItem(props, i + index1))}
{section1.map((props, i) => routeMenuItem(props, i + 0))}
- {section3.map((props, i) => routeMenuItem(props, i + 8))}
+ {section3.map((props, i) => routeMenuItem(props, i + index2))}
>
);
}