From b580b3ddaf8dbbb6db142b0d019a40b2d5c7a7c0 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sat, 28 Jan 2023 03:56:22 -0800 Subject: [PATCH] Remove redundant values --- components/SelectItem/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/SelectItem/index.tsx b/components/SelectItem/index.tsx index 083bfdb5..60b3e4e3 100644 --- a/components/SelectItem/index.tsx +++ b/components/SelectItem/index.tsx @@ -11,7 +11,7 @@ interface Props extends ComponentProps<'div'> { } const SelectItem = React.forwardRef(function selectItem( - { children, value, iconSrc, altText, ...props }, + { children, value, ...props }, forwardedRef ) { const { altText, iconSrc, ...rest } = props