aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/components/ui/input.tsx
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswa Kalyan Bhuyan <biswa@surgot.in> 2025-04-26 01:20:12 +0530
committerLibravatarLibravatar Biswa Kalyan Bhuyan <biswa@surgot.in> 2025-04-26 01:20:12 +0530
commit3941d80ff120238b973451325b834ebd8377281e (patch)
tree4647b687ceb27cb6bb47ea73bdf12898dcce8023 /frontend/src/components/ui/input.tsx
parent9d65a782ca3e2084ef0f560500f6014d7bd09bc0 (diff)
downloadfinance-3941d80ff120238b973451325b834ebd8377281e.tar.gz
finance-3941d80ff120238b973451325b834ebd8377281e.tar.bz2
finance-3941d80ff120238b973451325b834ebd8377281e.zip
finance/frontend: fix: fixed lint error'sHEADmaster
Diffstat (limited to 'frontend/src/components/ui/input.tsx')
-rw-r--r--frontend/src/components/ui/input.tsx3
1 files changed, 1 insertions, 2 deletions
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<HTMLInputElement> {}
+export type InputProps = React.InputHTMLAttributes<HTMLInputElement>;
const Input = React.forwardRef<HTMLInputElement, InputProps>(
({ className, type, ...props }, ref) => {