From 765610b10aa3158ee18151f84593ebf209d8c361 Mon Sep 17 00:00:00 2001 From: Leonardo Zizzamia Date: Wed, 6 Mar 2024 11:14:13 -0800 Subject: [PATCH] fix: format (#230) --- framegear/components/ValidationResults/ValidationResults.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framegear/components/ValidationResults/ValidationResults.tsx b/framegear/components/ValidationResults/ValidationResults.tsx index 3355e493f1..0a09668040 100644 --- a/framegear/components/ValidationResults/ValidationResults.tsx +++ b/framegear/components/ValidationResults/ValidationResults.tsx @@ -82,7 +82,7 @@ function ValidationEntry({ name, value, error }: ValidationEntryProps) { {name} {error ? '🔴' : '🟢'} -
{value || 'Not set'}
+
{value || 'Not set'}
{!!error &&
{error}
} );