From 3941d80ff120238b973451325b834ebd8377281e Mon Sep 17 00:00:00 2001 From: Biswa Kalyan Bhuyan Date: Sat, 26 Apr 2025 01:20:12 +0530 Subject: finance/frontend: fix: fixed lint error's --- frontend/src/components/ui/input.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'frontend/src/components/ui/input.tsx') diff --git a/frontend/src/components/ui/input.tsx b/frontend/src/components/ui/input.tsx index 91d3df1..c15af1b 100644 --- a/frontend/src/components/ui/input.tsx +++ b/frontend/src/components/ui/input.tsx @@ -2,8 +2,7 @@ import * as React from "react" import { cn } from "@/lib/utils" -export interface InputProps - extends React.InputHTMLAttributes {} +export type InputProps = React.InputHTMLAttributes; const Input = React.forwardRef( ({ className, type, ...props }, ref) => { -- cgit v1.2.3-59-g8ed1b