diff --git a/src/components/avatar/Avatar.tsx b/src/components/avatar/Avatar.tsx index ca779269c..3d2c8e460 100644 --- a/src/components/avatar/Avatar.tsx +++ b/src/components/avatar/Avatar.tsx @@ -154,7 +154,7 @@ const Avatar = ({ className, ); - const enableTooltip = tooltip && ((typeof fullName === 'string' && fullName.length > 0) || tooltipProps); + const enableTooltip = tooltip && ((typeof fullName === 'string' && fullName.length > 0) || tooltipProps?.tooltip); const Component = enableTooltip ? TooltippedBox : Box; const defaultToolTipProps = enableTooltip