From feebc6a98b18dfa5717233be005f19e70cb250e9 Mon Sep 17 00:00:00 2001 From: DS Boyce <260543580+ds-boyce@users.noreply.github.com> Date: Fri, 17 Apr 2026 13:50:41 -0700 Subject: [PATCH] Fix layout issue with avatar bubbles (#10289) --- src/components/AvatarBubbles.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/AvatarBubbles.tsx b/src/components/AvatarBubbles.tsx index 44fd7f4e90..2ed58f5ad3 100644 --- a/src/components/AvatarBubbles.tsx +++ b/src/components/AvatarBubbles.tsx @@ -3,6 +3,7 @@ import {type StyleProp, View, type ViewStyle} from 'react-native' import Animated, { Easing, interpolate, + type SharedValue, useAnimatedStyle, useSharedValue, withDelay, @@ -191,7 +192,7 @@ function AvatarBubble({ includeProfileBorder, }: { profile?: bsky.profile.AnyProfileView - scale: Animated.SharedValue + scale: SharedValue size: number style?: StyleProp x: number @@ -214,7 +215,6 @@ function AvatarBubble({ a.absolute, a.rounded_full, a.flex_grow_0, - {transform: [{translateX: x}, {translateY: y}]}, includeProfileBorder && { borderColor: t.atoms.text_inverted.color, borderWidth: 2,