fix(components): fix missing components on oct 2 2024 beta

This commit is contained in:
AAGaming
2024-10-03 16:46:50 -04:00
parent 8c6043b5a7
commit 0f9fb5a3b8
4 changed files with 13 additions and 10 deletions

View File

@@ -29,5 +29,6 @@ export interface SliderFieldProps extends ItemProps {
}
export const SliderField = Object.values(CommonUIModule).find((mod: any) =>
mod?.toString()?.includes('SliderField,fallback'),
// stable || beta as of oct 2 2024
mod?.toString()?.includes('SliderField,fallback') || mod?.toString()?.includes("SliderField\",")
) as FC<SliderFieldProps>;