From a03f1dc2ac25579df30e8cb59d2703110c3e564d Mon Sep 17 00:00:00 2001 From: MohamedBassem Date: Wed, 13 Mar 2024 22:37:41 +0000 Subject: lint: Lint and format the entire repo with the new configs --- apps/web/components/ui/textarea.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'apps/web/components/ui/textarea.tsx') diff --git a/apps/web/components/ui/textarea.tsx b/apps/web/components/ui/textarea.tsx index a0de3371..98d704ae 100644 --- a/apps/web/components/ui/textarea.tsx +++ b/apps/web/components/ui/textarea.tsx @@ -1,16 +1,14 @@ import * as React from "react"; - import { cn } from "@/lib/utils"; -export interface TextareaProps - extends React.TextareaHTMLAttributes {} +export type TextareaProps = React.TextareaHTMLAttributes; const Textarea = React.forwardRef( ({ className, ...props }, ref) => { return (