Revert "improve(funnel): make sure group by profile id works as you would think"
This reverts commit 56edb91dd0.
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
import { TooltipPortal } from '@radix-ui/react-tooltip';
|
||||
import { Tooltip, TooltipContent, TooltipTrigger } from './ui/tooltip';
|
||||
|
||||
interface TooltipCompleteProps {
|
||||
@@ -16,17 +15,12 @@ export function TooltipComplete({
|
||||
}: TooltipCompleteProps) {
|
||||
return (
|
||||
<Tooltip>
|
||||
<TooltipTrigger
|
||||
className="appearance-none"
|
||||
style={{ textAlign: 'inherit' }}
|
||||
>
|
||||
<TooltipTrigger asChild={typeof children !== 'string'}>
|
||||
{children}
|
||||
</TooltipTrigger>
|
||||
<TooltipPortal>
|
||||
<TooltipContent side={side} disabled={disabled}>
|
||||
{content}
|
||||
</TooltipContent>
|
||||
</TooltipPortal>
|
||||
<TooltipContent side={side} disabled={disabled}>
|
||||
{content}
|
||||
</TooltipContent>
|
||||
</Tooltip>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user