Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix unknown threadgates causing crashes (#7692)

* fix unknown threadgates

* don't fuck with the styles

authored by

Samuel Newman and committed by
GitHub
98b7e95b 7d6adb41

+6 -1
+6 -1
src/components/WhoCanReply.tsx
··· 209 209 a.flex_wrap, 210 210 t.atoms.text_contrast_medium, 211 211 ]}> 212 - {settings[0].type === 'everybody' ? ( 212 + {settings.length === 0 ? ( 213 + <Trans> 214 + This post has an unknown type of threadgate on it. Your app may be 215 + out of date. 216 + </Trans> 217 + ) : settings[0].type === 'everybody' ? ( 213 218 <Trans>Everybody can reply to this post.</Trans> 214 219 ) : settings[0].type === 'nobody' ? ( 215 220 <Trans>Replies to this post are disabled.</Trans>