0

fix: formatting breaking build

This commit is contained in:
Gabe Kangas 2023-07-29 16:04:32 -07:00
parent 7c13a3fd01
commit a163ab8d96
No known key found for this signature in database
GPG Key ID: 4345B2060657F330

View File

@ -162,7 +162,9 @@ export const ChatModerationDetailsModal: FC<ChatModerationDetailsModalProps> = (
>
<Spin spinning={loading}>
<UserColorBlock color={displayColor} />
{scopes?.map(scope => <Tag key={scope}>{scope}</Tag>)}
{scopes?.map(scope => (
<Tag key={scope}>{scope}</Tag>
))}
{authenticated && <Tag>Authenticated</Tag>}
{isBot && <Tag>Bot</Tag>}
<ValueRow label="Messages Sent Across Clients" value={totalMessagesSent.toString()} />