diff --git a/frontend/app/components/Assist/components/AssistTabs/AssistTabs.tsx b/frontend/app/components/Assist/components/AssistTabs/AssistTabs.tsx index 07af99e24..539c2d8d1 100644 --- a/frontend/app/components/Assist/components/AssistTabs/AssistTabs.tsx +++ b/frontend/app/components/Assist/components/AssistTabs/AssistTabs.tsx @@ -1,5 +1,5 @@ import React, { useEffect, useState } from 'react'; -import { SlideModal, Avatar, Icon } from 'UI'; +import { SlideModal, Avatar, TextEllipsis, Icon } from 'UI'; import SessionList from '../SessionList'; import stl from './assistTabs.css' @@ -19,7 +19,11 @@ const AssistTabs = (props: Props) => {
{/* */} -
{props.userId}'s
+
+ + {props.userId}'s asdasd asdasdasdasd + +
- +
)} diff --git a/frontend/app/components/shared/LiveSessionList/LiveSessionList.tsx b/frontend/app/components/shared/LiveSessionList/LiveSessionList.tsx index 8ffd256bd..cb503a745 100644 --- a/frontend/app/components/shared/LiveSessionList/LiveSessionList.tsx +++ b/frontend/app/components/shared/LiveSessionList/LiveSessionList.tsx @@ -161,7 +161,7 @@ function LiveSessionList(props: Props) { ))} - {metaList.slice(0, MAX_LENGTH).map(({ label, value }, index) => ( + {metaList.slice(0, maxLength).map(({ label, value }, index) => ( ))} - {metaList.length > MAX_LENGTH && ( - + {metaList.length > maxLength && ( + )}
)