Skip to content

Commit f761dcc

Browse files
committed
fix(Avatar): Typing issue
1 parent ed7ece0 commit f761dcc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/Avatar/Avatar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const AvatarComponent = (props: AvatarProps) => {
1313
}
1414

1515
if (props.type === 'image' && props.image !== undefined) {
16-
return <Avatar.Image source={props.image} {...props} />;
16+
return <Avatar.Image source={props.image as any} {...props} />;
1717
}
1818
return null;
1919
};

0 commit comments

Comments
 (0)