Skip to content

Commit

Permalink
fix(providers): [tooltip] disable hoverable content
Browse files Browse the repository at this point in the history
When hovering over button/action and quickly moving mouse to another button/action tooltip content interferes with mouse selecting and blocks clicking on button/actions. This will disable hover by default on all tooltips

Signed-off-by: Danil Kostromin <[email protected]>
  • Loading branch information
Danil Kostromin committed Feb 9, 2024
1 parent f0da04d commit 838bb1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/shared/tailwind-ui/src/lib/providers/providers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { TooltipProvider } from '../tooltip';

export const Providers = ({ children }: PropsWithChildren) => {
return (
<TooltipProvider>
<TooltipProvider disableHoverableContent={true}>
<ConnectionStatusProvider />
<SonnerToaster />
{children}
Expand Down

0 comments on commit 838bb1a

Please sign in to comment.