We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed7ece0 commit f761dccCopy full SHA for f761dcc
1 file changed
src/components/Avatar/Avatar.tsx
@@ -13,7 +13,7 @@ const AvatarComponent = (props: AvatarProps) => {
13
}
14
15
if (props.type === 'image' && props.image !== undefined) {
16
- return <Avatar.Image source={props.image} {...props} />;
+ return <Avatar.Image source={props.image as any} {...props} />;
17
18
return null;
19
};
0 commit comments