Skip to content

Commit

Permalink
Replace zero value in temp fix to avoid NaN errors
Browse files Browse the repository at this point in the history
  • Loading branch information
brookewp committed Jul 26, 2023
1 parent a0f086b commit bb59c76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/components/src/ui/ariakit-tooltip/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ function AriaToolTip( props: ToolTipProps ) {
shortcut={ shortcut }
/>
) }
<TooltipArrow size={ 0 } />
<TooltipArrow size={ 0.0001 } />
</Tooltip>
) }
</>
Expand Down

0 comments on commit bb59c76

Please sign in to comment.