Skip to content

Commit

Permalink
Amend
Browse files Browse the repository at this point in the history
  • Loading branch information
raphjaph committed Jan 20, 2025
1 parent 7a23921 commit a7ee288
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 9 deletions.
6 changes: 0 additions & 6 deletions www/src/components/ui/card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ const Card = React.forwardRef<
{...props}
/>
));
Card.displayName = "Card";

const CardHeader = React.forwardRef<
HTMLDivElement,
Expand All @@ -30,7 +29,6 @@ const CardHeader = React.forwardRef<
{...props}
/>
));
CardHeader.displayName = "CardHeader";

const CardTitle = React.forwardRef<
HTMLDivElement,
Expand All @@ -42,7 +40,6 @@ const CardTitle = React.forwardRef<
{...props}
/>
));
CardTitle.displayName = "CardTitle";

const CardDescription = React.forwardRef<
HTMLDivElement,
Expand All @@ -54,7 +51,6 @@ const CardDescription = React.forwardRef<
{...props}
/>
));
CardDescription.displayName = "CardDescription";

const CardContent = React.forwardRef<
HTMLDivElement,
Expand All @@ -66,7 +62,6 @@ const CardContent = React.forwardRef<
{...props}
/>
));
CardContent.displayName = "CardContent";

const CardFooter = React.forwardRef<
HTMLDivElement,
Expand All @@ -81,7 +76,6 @@ const CardFooter = React.forwardRef<
{...props}
/>
));
CardFooter.displayName = "CardFooter";

export {
Card,
Expand Down
1 change: 0 additions & 1 deletion www/src/components/ui/input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,5 @@ const Input = React.forwardRef<HTMLInputElement, React.ComponentProps<"input">>(
);
}
);
Input.displayName = "Input";

export { Input };
1 change: 0 additions & 1 deletion www/src/components/ui/textarea.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,5 @@ const Textarea = React.forwardRef<
/>
);
});
Textarea.displayName = "Textarea";

export { Textarea };
1 change: 0 additions & 1 deletion www/src/components/ui/tooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,5 @@ const TooltipContent = React.forwardRef<
/>
</TooltipPrimitive.Portal>
))
TooltipContent.displayName = TooltipPrimitive.Content.displayName

export { Tooltip, TooltipTrigger, TooltipContent, TooltipProvider }

0 comments on commit a7ee288

Please sign in to comment.