diff --git a/app/views/RoomView/Header/Header.js b/app/views/RoomView/Header/Header.js index 2728cac8f..bd48af0ea 100644 --- a/app/views/RoomView/Header/Header.js +++ b/app/views/RoomView/Header/Header.js @@ -3,14 +3,13 @@ import PropTypes from 'prop-types'; import { View, Text, StyleSheet, ScrollView, TouchableOpacity } from 'react-native'; -import removeMarkdown from 'remove-markdown'; -import shortnameToUnicode from '../../../utils/shortnameToUnicode'; import I18n from '../../../i18n'; import sharedStyles from '../../Styles'; import { isAndroid, isTablet } from '../../../utils/deviceInfo'; import Icon from './Icon'; import { themes } from '../../../constants/colors'; +import Markdown from '../../../containers/markdown'; const androidMarginLeft = isTablet ? 0 : 10; @@ -75,12 +74,14 @@ const HeaderTitle = React.memo(({ title = I18n.t('Connecting'); } return ( - {title} - + theme={theme} + /> ); }); @@ -102,12 +103,6 @@ const Header = React.memo(({ scale = 0.8; } } - if (title) { - title = shortnameToUnicode(title); - if (tmid) { - title = removeMarkdown(title); - } - } const onPress = () => { if (!tmid) {