Skip to content

Commit c7db729

Browse files
committed
Remove the New badge tooltip
1 parent 1afcc27 commit c7db729

1 file changed

Lines changed: 6 additions & 12 deletions

File tree

apps/webapp/app/components/FeatureBadges.tsx

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -56,17 +56,11 @@ export function BetaTitle({ children }: { children: React.ReactNode }) {
5656

5757
export function NewBadge({ inline = false, className }: { inline?: boolean; className?: string }) {
5858
return (
59-
<SimpleTooltip
60-
button={
61-
<Badge
62-
variant="extra-small"
63-
className={cn("text-success", inline ? "inline-grid" : "", className)}
64-
>
65-
New
66-
</Badge>
67-
}
68-
content="This feature is new"
69-
disableHoverableContent
70-
/>
59+
<Badge
60+
variant="extra-small"
61+
className={cn("text-success", inline ? "inline-grid" : "", className)}
62+
>
63+
New
64+
</Badge>
7165
);
7266
}

0 commit comments

Comments
 (0)