Skip to content

Commit

Permalink
fix: format (#230)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zizzamia authored Mar 6, 2024
1 parent df325f4 commit 765610b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ function ValidationEntry({ name, value, error }: ValidationEntryProps) {
<span>{name}</span>
<span>{error ? '🔴' : '🟢'}</span>
</div>
<div className="font-mono break-all">{value || 'Not set'}</div>
<div className="break-all font-mono">{value || 'Not set'}</div>
{!!error && <div className="font-mono italic">{error}</div>}
</div>
);
Expand Down

0 comments on commit 765610b

Please sign in to comment.