This commit is contained in:
Adria Navarro 2025-01-28 10:00:30 +01:00
parent 582854cc2e
commit 5b3bd1ad17
1 changed files with 1 additions and 5 deletions

View File

@ -121,12 +121,8 @@ function getInvalidDatasources(
return result
}
function getAllComponentsInScreen(screen: Screen) {
return findAllComponents(screen.props) as Component[]
}
function getMissingRequiredSettings(screen: Screen) {
const allComponents = getAllComponentsInScreen(screen)
const allComponents = findAllComponents(screen.props) as Component[]
const result: Record<string, UIComponentError[]> = {}
for (const component of allComponents) {