From 57df9e738e39f2dbda996c591da8f7fa4c3bf4a6 Mon Sep 17 00:00:00 2001 From: Adam Alston Date: Sat, 26 Apr 2025 12:01:55 -0400 Subject: [PATCH] fix(MultiSelect): update types --- packages/react/src/components/MultiSelect/MultiSelect.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/react/src/components/MultiSelect/MultiSelect.tsx b/packages/react/src/components/MultiSelect/MultiSelect.tsx index b979ece59c7a..4d6a65532a54 100644 --- a/packages/react/src/components/MultiSelect/MultiSelect.tsx +++ b/packages/react/src/components/MultiSelect/MultiSelect.tsx @@ -914,7 +914,7 @@ export const MultiSelect = React.forwardRef( ); } -); +) as MultiSelectComponent; type MultiSelectComponentProps = React.PropsWithChildren< MultiSelectProps @@ -922,6 +922,8 @@ type MultiSelectComponentProps = React.PropsWithChildren< React.RefAttributes; interface MultiSelectComponent { + propTypes: Record; + displayName: string; ( props: MultiSelectComponentProps ): React.ReactElement | null;