Skip to content

Commit 00a038f

Browse files
committed
fix(ui): set placement to right for target platform list tooltip
1 parent 6e3f05a commit 00a038f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/Shared/Components/TargetPlatforms/TargetPlatformListTooltip.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,12 @@ const TooltipContent = ({ targetPlatforms }: Pick<TargetPlatformListTooltipProps
1717
)
1818

1919
const TargetPlatformListTooltip = ({ targetPlatforms, children }: TargetPlatformListTooltipProps) => (
20-
<Tooltip content={<TooltipContent targetPlatforms={targetPlatforms} />} alwaysShowTippyOnHover interactive>
20+
<Tooltip
21+
content={<TooltipContent targetPlatforms={targetPlatforms} />}
22+
placement="right"
23+
alwaysShowTippyOnHover
24+
interactive
25+
>
2126
{children}
2227
</Tooltip>
2328
)

0 commit comments

Comments
 (0)