diff --git a/src/app/components/StateRoute/StateRoute.tsx b/src/app/components/StateRoute/StateRoute.tsx index dba6e2726..46ae950bf 100644 --- a/src/app/components/StateRoute/StateRoute.tsx +++ b/src/app/components/StateRoute/StateRoute.tsx @@ -40,6 +40,8 @@ const StateRoute = (props: StateRouteProps) => { const hierarchy = propsHierarchy || tabsHierarchy; const viewIndex = propsViewIndex || tabsViewIndex; + + // lines 45 - 63 contains functionality to disable the accessibility features in Reactime. const dispatch = useDispatch(); const [showTree, setShowTree] = useState(false); const [selectedValue, setSelectedValue] = useState('disable'); @@ -122,6 +124,8 @@ const StateRoute = (props: StateRouteProps) => { { }; export default StateRoute; +