add space before 'Reposted'

This commit is contained in:
Alejandro Gomez
2023-01-13 17:24:20 +01:00
parent 8bffd3bd4c
commit fa3088a331

View File

@ -39,7 +39,7 @@ export default function NoteReaction(props) {
function tagLine() {
switch (ev.Kind) {
case EventKind.Reaction: return <small>Reacted with {mapReaction(ev.Content)}</small>;
case EventKind.Repost: return <small>Reposted</small>
case EventKind.Repost: return <small> Reposted</small>
}
}