From 7ba66f5b89859025e74cf1e1787c6d4a8c3e124c Mon Sep 17 00:00:00 2001 From: Gabi Purcaru Date: Wed, 21 Dec 2022 10:11:13 +0000 Subject: [PATCH] fix error log in dark mode --- components/Content.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Content.tsx b/components/Content.tsx index f539cde..5516fa9 100644 --- a/components/Content.tsx +++ b/components/Content.tsx @@ -304,7 +304,7 @@ function AccountDetails({ account, mainDomain }) { function ErrorLog({ errors }: { errors: Array }) { const [expanded, setExpanded] = useState(false); return (<> - {errors.length > 0 ?
+ {errors.length > 0 ?
Found {expanded ? ':' : '.'} {expanded ? errors.map(err =>

{err}

) : null}
: null}