Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix reversed icons in validator 🤦 (#2991)

authored by

Hailey and committed by
GitHub
88846ca3 d38f168d

+2 -2
+2 -2
src/view/com/auth/create/Step2.tsx
··· 133 133 const t = useTheme() 134 134 135 135 if (!valid) { 136 - return <Check size="md" style={{color: t.palette.negative_500}} /> 136 + return <Times size="md" style={{color: t.palette.negative_500}} /> 137 137 } 138 138 139 - return <Times size="md" style={{color: t.palette.positive_700}} /> 139 + return <Check size="md" style={{color: t.palette.positive_700}} /> 140 140 }