Skip to content

Commit bc4788a

Browse files
committed
lint
1 parent 01dfe81 commit bc4788a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

apps/sim/ee/audit-logs/components/audit-logs.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,8 @@ function AuditLogRow({ entry }: AuditLogRowProps) {
141141
<span className='text-[var(--text-primary)]'>{entry.description}</span>
142142
</div>
143143
)}
144-
{entry.metadata != null && Object.keys(entry.metadata as Record<string, unknown>).length > 0 ? (
144+
{entry.metadata != null &&
145+
Object.keys(entry.metadata as Record<string, unknown>).length > 0 ? (
145146
<div className='flex gap-2'>
146147
<span className='w-[100px] flex-shrink-0 text-[var(--text-muted)]'>Details</span>
147148
<pre className='min-w-0 flex-1 overflow-x-auto whitespace-pre-wrap break-all text-[var(--text-secondary)] text-xs'>

0 commit comments

Comments
 (0)