1
0
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:
xmflsct
2023-01-04 23:12:18 +01:00
parent 06324ee51a
commit bb9fa0c752
5 changed files with 37 additions and 8 deletions

View File

@ -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'