diff --git a/src/frontend/src/components/ProjectDetails/MobileFooter.tsx b/src/frontend/src/components/ProjectDetails/MobileFooter.tsx index 26a3afce25..8bd86d5f32 100644 --- a/src/frontend/src/components/ProjectDetails/MobileFooter.tsx +++ b/src/frontend/src/components/ProjectDetails/MobileFooter.tsx @@ -65,36 +65,38 @@ const MobileFooter = () => { ), }, ]; + const FooterItemList = ({ item }) => { + return ( +
dispatch(ProjectActions.SetMobileFooterSelection(item?.id))} + className="fmtm-group fmtm-cursor-pointer" + > +
+
{item?.icon}
+
+
+

+ {item?.title} +

+
+
+ ); + }; return (
{footerItem.map((item) => ( -
dispatch(ProjectActions.SetMobileFooterSelection(item?.id))} - className="fmtm-group fmtm-cursor-pointer" - > -
-
{item?.icon}
-
-
-

- {item?.title} -

-
-
+ ))}