From 88846ca36d2231df8e65a665ab4530761ab9e6ed Mon Sep 17 00:00:00 2001 From: Hailey Date: Mon, 26 Feb 2024 16:48:32 -0800 Subject: [PATCH] =?UTF-8?q?fix=20reversed=20icons=20in=20validator=20?= =?UTF-8?q?=F0=9F=A4=A6=20(#2991)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/view/com/auth/create/Step2.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/view/com/auth/create/Step2.tsx b/src/view/com/auth/create/Step2.tsx index a389203098..5c262977f1 100644 --- a/src/view/com/auth/create/Step2.tsx +++ b/src/view/com/auth/create/Step2.tsx @@ -133,8 +133,8 @@ function IsValidIcon({valid}: {valid: boolean}) { const t = useTheme() if (!valid) { - return + return } - return + return }