Skip to content

Commit

Permalink
AvatarGroup: fix VR default size bug (#3942)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbertCarreras authored Jan 16, 2025
1 parent 55a2252 commit fa805e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/gestalt/src/AvatarGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ const AvatarGroupWithForwardRef = forwardRef<UnionRefs, Props>(function AvatarGr
href,
onClick,
role,
size = isInVRExperiment ? 'md' : 'fit',
size = 'fit',
} = props;

const isDisplayOnly = !role;
Expand Down

0 comments on commit fa805e5

Please sign in to comment.