diff --git a/app/react/components/Tip/Tooltip/Tooltip.tsx b/app/react/components/Tip/Tooltip/Tooltip.tsx index c185065d0..be9107e20 100644 --- a/app/react/components/Tip/Tooltip/Tooltip.tsx +++ b/app/react/components/Tip/Tooltip/Tooltip.tsx @@ -13,7 +13,7 @@ export interface Props { } export function Tooltip({ message, position = 'bottom' }: Props) { - const id = `tooltip-${_.uniqueId()}`; + const id = _.uniqueId('tooltip-'); return (