about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorHailey <me@haileyok.com>2024-02-26 16:48:32 -0800
committerGitHub <noreply@github.com>2024-02-26 16:48:32 -0800
commit88846ca36d2231df8e65a665ab4530761ab9e6ed (patch)
tree4969a1606b1f337043854e140f861184231dfa14 /src
parentd38f168de593b0a7883180ee51bf043eb1557dd2 (diff)
downloadvoidsky-88846ca36d2231df8e65a665ab4530761ab9e6ed.tar.zst
fix reversed icons in validator 🤦 (#2991)
Diffstat (limited to 'src')
-rw-r--r--src/view/com/auth/create/Step2.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/auth/create/Step2.tsx b/src/view/com/auth/create/Step2.tsx
index a38920309..5c262977f 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 <Check size="md" style={{color: t.palette.negative_500}} />
+    return <Times size="md" style={{color: t.palette.negative_500}} />
   }
 
-  return <Times size="md" style={{color: t.palette.positive_700}} />
+  return <Check size="md" style={{color: t.palette.positive_700}} />
 }