summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--frontend/src/router-hook.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/frontend/src/router-hook.tsx b/frontend/src/router-hook.tsx
index ce0c553f..e318930e 100644
--- a/frontend/src/router-hook.tsx
+++ b/frontend/src/router-hook.tsx
@@ -41,10 +41,10 @@ class RouterHook extends Logger {
const DeckyWrapper = ({ children }: { children: ReactElement }) => {
const { routes } = useDeckyRouterState();
- const routerIndex = children.props.children[0].props.children.length - 1;
+ const routerIndex = children.props.children[0].props.children.length;
if (
- !children.props.children[0].props.children[routerIndex].length ||
- children.props.children[0].props.children !== routes.size
+ !children.props.children[0].props.children[routerIndex]?.length ||
+ children.props.children[0].props.children[routerIndex].length !== routes.size
) {
const newRouterArray: ReactElement[] = [];
routes.forEach(({ component, props }, path) => {