fix calibration menu in controller settings

This commit is contained in:
AAGaming
2022-07-24 11:37:38 -04:00
parent c9bf8d357e
commit 2004bdebbf
+3 -3
View File
@@ -41,10 +41,10 @@ class RouterHook extends Logger {
const DeckyWrapper = ({ children }: { children: ReactElement }) => { const DeckyWrapper = ({ children }: { children: ReactElement }) => {
const { routes } = useDeckyRouterState(); const { routes } = useDeckyRouterState();
const routerIndex = children.props.children[0].props.children.length - 1; const routerIndex = children.props.children[0].props.children.length;
if ( if (
!children.props.children[0].props.children[routerIndex].length || !children.props.children[0].props.children[routerIndex]?.length ||
children.props.children[0].props.children !== routes.size children.props.children[0].props.children[routerIndex].length !== routes.size
) { ) {
const newRouterArray: ReactElement[] = []; const newRouterArray: ReactElement[] = [];
routes.forEach(({ component, props }, path) => { routes.forEach(({ component, props }, path) => {