Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix layout issue with avatar bubbles (#10289)

authored by

DS Boyce and committed by
GitHub
feebc6a9 587dc8df

+2 -2
+2 -2
src/components/AvatarBubbles.tsx
··· 3 3 import Animated, { 4 4 Easing, 5 5 interpolate, 6 + type SharedValue, 6 7 useAnimatedStyle, 7 8 useSharedValue, 8 9 withDelay, ··· 191 192 includeProfileBorder, 192 193 }: { 193 194 profile?: bsky.profile.AnyProfileView 194 - scale: Animated.SharedValue<number> 195 + scale: SharedValue<number> 195 196 size: number 196 197 style?: StyleProp<ViewStyle> 197 198 x: number ··· 214 215 a.absolute, 215 216 a.rounded_full, 216 217 a.flex_grow_0, 217 - {transform: [{translateX: x}, {translateY: y}]}, 218 218 includeProfileBorder && { 219 219 borderColor: t.atoms.text_inverted.color, 220 220 borderWidth: 2,