From 4dd43b065d5c094ef1ffd686e402f18bca19e3da Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sat, 24 Dec 2022 05:03:47 -0800 Subject: [PATCH] Fix build errors --- components/Input/index.tsx | 2 +- components/Select/index.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/Input/index.tsx b/components/Input/index.tsx index 5338f97b..054e1aa1 100644 --- a/components/Input/index.tsx +++ b/components/Input/index.tsx @@ -12,7 +12,7 @@ interface Props label?: string } -const Input = React.forwardRef(function input( +const Input = React.forwardRef(function Input( props: Props, forwardedRef ) { diff --git a/components/Select/index.tsx b/components/Select/index.tsx index 7cc4bc69..93b254fd 100644 --- a/components/Select/index.tsx +++ b/components/Select/index.tsx @@ -20,7 +20,7 @@ interface Props triggerClass?: string } -const Select = React.forwardRef(function input( +const Select = React.forwardRef(function Select( props: Props, forwardedRef ) {