Fix spacing in message search results

This commit is contained in:
Evan Hahn
2021-10-18 17:43:03 -05:00
committed by GitHub
parent 2cd02855fc
commit 54ffec00ed

View File

@@ -159,9 +159,9 @@ export const MessageSearchResult: FunctionComponent<PropsType> = React.memo(
// This isn't perfect because (1) it doesn't work with RTL languages (2) // This isn't perfect because (1) it doesn't work with RTL languages (2)
// capitalization may be incorrect for some languages, like English. // capitalization may be incorrect for some languages, like English.
headerName = ( headerName = (
<> <span>
{renderPerson(i18n, from)} {i18n('toJoiner')} {renderPerson(i18n, to)} {renderPerson(i18n, from)} {i18n('toJoiner')} {renderPerson(i18n, to)}
</> </span>
); );
} }