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

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