diff --git a/components/tooltip/placements.tsx b/components/tooltip/placements.tsx index 05aa801971..303242fd97 100644 --- a/components/tooltip/placements.tsx +++ b/components/tooltip/placements.tsx @@ -92,7 +92,10 @@ export default function getPlacements(config: PlacementsConfig = {}) { ...placementMap[key], overflow: getOverflowOptions(autoAdjustOverflow), targetOffset, - } : rcPlacements[key]; + } : { + ...rcPlacements[key], + overflow: getOverflowOptions(autoAdjustOverflow), + }; }); return placementMap; }