mirror of
https://github.com/tooot-app/app
synced 2025-06-05 22:19:13 +02:00
Improved history diff
This commit is contained in:
@ -7,11 +7,11 @@ import { useTranslation } from 'react-i18next'
|
||||
import StatusContext from '../Context'
|
||||
|
||||
const HeaderSharedApplication: React.FC = () => {
|
||||
const { status } = useContext(StatusContext)
|
||||
const { status, isConversation } = useContext(StatusContext)
|
||||
const { colors } = useTheme()
|
||||
const { t } = useTranslation('componentTimeline')
|
||||
|
||||
return status?.application?.name && status.application.name !== 'Web' ? (
|
||||
return !isConversation && status?.application?.name && status.application.name !== 'Web' ? (
|
||||
<CustomText
|
||||
fontStyle='S'
|
||||
accessibilityRole='link'
|
||||
|
Reference in New Issue
Block a user