From d2101ef1cfe7dd0d70ceafe3c8e1fab960efc61a Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Fri, 26 Dec 2025 22:23:59 -0500 Subject: [PATCH] fix: prevent onboarding tour tooltip from cutting off at step 4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Increased estimated tooltip height from 200px to 300px so the viewport clamping function correctly positions the tooltip, keeping the Next button visible on all steps. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/ui/OnboardingTour/TourTooltip.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/OnboardingTour/TourTooltip.tsx b/src/ui/OnboardingTour/TourTooltip.tsx index 418f655..b1aba20 100644 --- a/src/ui/OnboardingTour/TourTooltip.tsx +++ b/src/ui/OnboardingTour/TourTooltip.tsx @@ -80,7 +80,7 @@ export function TourTooltip({ isLastStep }: TourTooltipProps) { const tooltipWidth = 320 - const tooltipHeight = 200 // Approximate, will auto-size + const tooltipHeight = 300 // Approximate height to ensure buttons stay visible const highlightPadding = step.highlightPadding || 8 const gap = 12