Skip to content

Commit 0fa501b

Browse files
committed
chore: Fix no-time display in quotes
1 parent 2b6d104 commit 0fa501b

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/ps/commands/quotes.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,10 @@ function FormatQuoteLine({ line, style, psUsernameTag }: { line: string; style?:
9898
if (chatMatch)
9999
return (
100100
<div className="chat chatmessage-a" style={style ?? { padding: '3px 0' }}>
101-
<small>{chatMatch[1] + chatMatch[2]}</small>
101+
<small>
102+
{chatMatch[1]}
103+
{chatMatch[2]}
104+
</small>
102105
<span className="username">
103106
{psUsernameTag ? <UsernamePS name={`${chatMatch[3]}:`} /> : <UsernameCustom name={`${chatMatch[3]}:`} />}
104107
</span>

0 commit comments

Comments
 (0)