diff options
| author | crupest <crupest@outlook.com> | 2020-10-01 23:23:24 +0800 |
|---|---|---|
| committer | crupest <crupest@outlook.com> | 2020-10-01 23:23:24 +0800 |
| commit | d8245fa9703c532dac85980f0c25cae0a1f9e0dc (patch) | |
| tree | 48ca91263756d685afa598ba4c2392f884be50c9 /Timeline/ClientApp/src/app/views/user | |
| parent | 0b353ca6f3e540eb4850ac6121a0c678c6cbd17b (diff) | |
| download | timeline-d8245fa9703c532dac85980f0c25cae0a1f9e0dc.tar.gz timeline-d8245fa9703c532dac85980f0c25cae0a1f9e0dc.tar.bz2 timeline-d8245fa9703c532dac85980f0c25cae0a1f9e0dc.zip | |
...
Diffstat (limited to 'Timeline/ClientApp/src/app/views/user')
| -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> |
