Bluesky app fork with some witchin' additions 💫

fix who can reply icon (#8625)

authored by samuel.fm and committed by

GitHub 587c14ba be75e00d

+3 -1
+3 -1
src/components/WhoCanReply.tsx
··· 160 160 width?: number 161 161 settings: ThreadgateAllowUISetting[] 162 162 }) { 163 - const isEverybody = settings.length === 0 163 + const isEverybody = 164 + settings.length === 0 || 165 + settings.every(setting => setting.type === 'everybody') 164 166 const isNobody = !!settings.find(gate => gate.type === 'nobody') 165 167 const IconComponent = isEverybody ? Earth : isNobody ? CircleBanSign : Group 166 168 return <IconComponent fill={color} width={width} />