diff options
Diffstat (limited to 'Timeline/ClientApp/src/app/views/user/UserInfoCard.tsx')
-rw-r--r-- | Timeline/ClientApp/src/app/views/user/UserInfoCard.tsx | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/Timeline/ClientApp/src/app/views/user/UserInfoCard.tsx b/Timeline/ClientApp/src/app/views/user/UserInfoCard.tsx index 4cf11e62..bad2a9e1 100644 --- a/Timeline/ClientApp/src/app/views/user/UserInfoCard.tsx +++ b/Timeline/ClientApp/src/app/views/user/UserInfoCard.tsx @@ -16,14 +16,7 @@ export type UserInfoCardProps = TimelineCardComponentProps< >; const UserInfoCard: React.FC<UserInfoCardProps> = (props) => { - const { - timeline, - onMember, - onManage, - syncStatus, - collapse, - toggleCollapse, - } = props; + const { timeline, onMember, onManage, syncStatus, toggleCollapse } = props; const { t } = useTranslation(); const avatar = useAvatar(timeline?.owner?.username); @@ -32,7 +25,6 @@ const UserInfoCard: React.FC<UserInfoCardProps> = (props) => { <InfoCardTemplate className={props.className} syncStatus={syncStatus} - collapse={collapse} toggleCollapse={toggleCollapse} > <div> |