diff --git a/src/components/ProgressGuide/List.tsx b/src/components/ProgressGuide/List.tsx index 88a81b7356..5bd55de8d3 100644 --- a/src/components/ProgressGuide/List.tsx +++ b/src/components/ProgressGuide/List.tsx @@ -14,6 +14,7 @@ import {Button, ButtonIcon} from '#/components/Button' import {Person_Stroke2_Corner2_Rounded as PersonIcon} from '#/components/icons/Person' import {TimesLarge_Stroke2_Corner0_Rounded as Times} from '#/components/icons/Times' import {Text} from '#/components/Typography' +import type * as bsky from '#/types/bsky' import {FollowDialog} from './FollowDialog' import {ProgressGuideTask} from './Task' @@ -92,7 +93,7 @@ export function ProgressGuideList({style}: {style?: StyleProp}) { return null } -function StackedAvatars({follows}: {follows?: {avatar?: string}[]}) { +function StackedAvatars({follows}: {follows?: bsky.profile.AnyProfileView[]}) { const t = useTheme() const {centerColumnOffset} = useLayoutBreakpoints() @@ -113,7 +114,7 @@ function StackedAvatars({follows}: {follows?: {avatar?: string}[]}) { {/* Show followed user avatars */} {followedAvatars.map((follow, i) => (