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 25, 2023
1 parent 26442dd commit b8e719e
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 b8e719e

Please sign in to comment.