1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00

Fix notification account info not shown

This commit is contained in:
xmflsct
2022-12-05 21:30:19 +01:00
parent 53b38004c3
commit 5338720106
2 changed files with 13 additions and 11 deletions

View File

@ -19,7 +19,7 @@ export interface Props {
const TimelineActioned: React.FC<Props> = ({ action, isNotification, ...rest }) => {
const { status, reblogStatus } = useContext(StatusContext)
const account = rest.account || (reblogStatus ? reblogStatus.account : status?.account)
if (!status || !account) return null
if (!account) return null
const { t } = useTranslation('componentTimeline')
const { colors } = useTheme()