diff --git a/frontend/app/components/shared/SessionItem/MetaMoreButton/MetaMoreButton.tsx b/frontend/app/components/shared/SessionItem/MetaMoreButton/MetaMoreButton.tsx index c94f67310..6b843d636 100644 --- a/frontend/app/components/shared/SessionItem/MetaMoreButton/MetaMoreButton.tsx +++ b/frontend/app/components/shared/SessionItem/MetaMoreButton/MetaMoreButton.tsx @@ -15,7 +15,7 @@ export default function MetaMoreButton(props: Props) { (
{list.slice(maxLength).map(({ label, value }, index) => ( @@ -26,9 +26,7 @@ export default function MetaMoreButton(props: Props) { placement="bottom" >
-
diff --git a/frontend/app/components/shared/SessionItem/SessionMetaList/SessionMetaList.tsx b/frontend/app/components/shared/SessionItem/SessionMetaList/SessionMetaList.tsx index a2f2f72b7..5bed299bf 100644 --- a/frontend/app/components/shared/SessionItem/SessionMetaList/SessionMetaList.tsx +++ b/frontend/app/components/shared/SessionItem/SessionMetaList/SessionMetaList.tsx @@ -13,10 +13,10 @@ export default function SessionMetaList(props: Props) { const { className = '', metaList, maxLength = 4 } = props; return ( -
+
{metaList.slice(0, maxLength).map(({ label, value }, index) => ( - + ))}