fix: prevent onboarding tour tooltip from cutting off at step 4

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 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2025-12-26 22:23:59 -05:00
parent 911881054a
commit d2101ef1cf
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ export function TourTooltip({
isLastStep isLastStep
}: TourTooltipProps) { }: TourTooltipProps) {
const tooltipWidth = 320 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 highlightPadding = step.highlightPadding || 8
const gap = 12 const gap = 12