fix: make sure avatar data for owner displays correctly (#14812)

This commit is contained in:
Michael Smith
2024-09-26 03:57:21 +00:00
committed by GitHub
parent 4dcf5ef323
commit 8403dd5c36
@@ -297,11 +297,7 @@ const OwnerBreadcrumb: FC<OwnerBreadcrumbProps> = ({
anchorOrigin={{ vertical: "bottom", horizontal: "center" }}
transformOrigin={{ vertical: "top", horizontal: "center" }}
>
<AvatarData
title={ownerName}
subtitle="Owner"
avatar={ownerAvatarUrl}
/>
<AvatarData title={ownerName} subtitle="Owner" src={ownerAvatarUrl} />
</HelpTooltipContent>
</Popover>
);