diff options
author | Hailey <me@haileyok.com> | 2024-02-26 16:48:32 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-26 16:48:32 -0800 |
commit | 88846ca36d2231df8e65a665ab4530761ab9e6ed (patch) | |
tree | 4969a1606b1f337043854e140f861184231dfa14 | |
parent | d38f168de593b0a7883180ee51bf043eb1557dd2 (diff) | |
download | voidsky-88846ca36d2231df8e65a665ab4530761ab9e6ed.tar.zst |
fix reversed icons in validator 🤦 (#2991)
-rw-r--r-- | src/view/com/auth/create/Step2.tsx | 4 |
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}} /> } |