UnreadNotice: add missing space

This commit is contained in:
Matilde Park 2021-04-27 15:51:02 -04:00
parent 4f6003fd24
commit 2d22823a5b

View File

@ -44,10 +44,10 @@ export const UnreadNotice = (props) => {
cursor={unreadMsg ? 'pointer' : null}
onClick={onClick}
>
{unreadCount} new message{unreadCount > 1 ? 's' : ''}
{unreadCount} new message{unreadCount > 1 ? 's' : ''}
{unreadMsg && (
<>
since{' '}
{' '}since{' '}
<Timestamp stamp={stamp} color='black' date={true} fontSize={1} />
</>
)}