Bluesky app fork with some witchin' additions 💫

Fix issue where empty state message is not centered (#9501)

authored by Alex Benzer and committed by GitHub 214615df 960df7bf

Changed files
+4 -2
src
components
+4 -2
src/components/Lists.tsx
··· 192 193 if (useEmptyState) { 194 return ( 195 - <View style={[t.atoms.border_contrast_low]}> 196 <EmptyState 197 icon={emptyStateIcon} 198 message={ ··· 203 } 204 button={emptyStateButton} 205 /> 206 - </View> 207 ) 208 } 209
··· 192 193 if (useEmptyState) { 194 return ( 195 + <CenteredView 196 + style={[t.atoms.border_contrast_low]} 197 + sideBorders={sideBorders ?? gtMobile}> 198 <EmptyState 199 icon={emptyStateIcon} 200 message={ ··· 205 } 206 button={emptyStateButton} 207 /> 208 + </CenteredView> 209 ) 210 } 211