chore(deps): update dependency prettier to v3.2.3 (#3520)

* chore(deps): update dependency prettier to v3.2.3

* chore(js): fix updated prettier whitespace

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Gabe Kangas <gabek@real-ity.com>
This commit is contained in:
renovate[bot]
2024-01-19 23:08:07 -08:00
committed by GitHub
parent 66b04cf4dd
commit dbf3ad93f1
3 changed files with 9 additions and 10 deletions

View File

@ -284,11 +284,10 @@ export const MainLayout: FC<MainLayoutProps> = ({ children }) => {
};
useEffect(() => {
menuItems.forEach(
item =>
item?.children?.forEach(child => {
if (child?.key === route) setOpenKeys([...openMenuItems, item.key]);
}),
menuItems.forEach(item =>
item?.children?.forEach(child => {
if (child?.key === route) setOpenKeys([...openMenuItems, item.key]);
}),
);
}, []);