We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1afcc27 commit c7db729Copy full SHA for c7db729
1 file changed
apps/webapp/app/components/FeatureBadges.tsx
@@ -56,17 +56,11 @@ export function BetaTitle({ children }: { children: React.ReactNode }) {
56
57
export function NewBadge({ inline = false, className }: { inline?: boolean; className?: string }) {
58
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
- />
+ <Badge
+ variant="extra-small"
+ className={cn("text-success", inline ? "inline-grid" : "", className)}
+ >
+ New
+ </Badge>
71
);
72
}
0 commit comments