style: fix prettier formatting in NamespacesListView

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-07 14:17:38 -05:00
parent 6281dbfa5e
commit 101b663867
+3 -9
View File
@@ -104,9 +104,7 @@ export default function NamespacesListView() {
},
{
label: 'Pass',
getter: (row: NamespaceRow) => (
<StatusLabel status="success">{row.pass}</StatusLabel>
),
getter: (row: NamespaceRow) => <StatusLabel status="success">{row.pass}</StatusLabel>,
},
{
label: 'Warning',
@@ -116,15 +114,11 @@ export default function NamespacesListView() {
},
{
label: 'Danger',
getter: (row: NamespaceRow) => (
<StatusLabel status="error">{row.danger}</StatusLabel>
),
getter: (row: NamespaceRow) => <StatusLabel status="error">{row.danger}</StatusLabel>,
},
{
label: 'Skipped',
getter: (row: NamespaceRow) => (
<StatusLabel status="">{row.skipped}</StatusLabel>
),
getter: (row: NamespaceRow) => <StatusLabel status="">{row.skipped}</StatusLabel>,
},
]}
data={rows}