File tree Expand file tree Collapse file tree
builder-frontend/src/components/screener Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -33,25 +33,23 @@ export default function Screener() {
3333 } ;
3434
3535 return (
36- < >
37- < main class = "mt-4" >
38- { screener . loading && < Loading /> }
39- { screener ( ) && (
40- < div class = "flex flex-col lg:flex-row" >
36+ < main class = "mt-4" >
37+ { screener . loading && < Loading /> }
38+ { screener ( ) && (
39+ < div class = "flex flex-col lg:flex-row" >
40+ < section class = "flex-1 overflow-y-auto p-4" >
41+ < FormRenderer
42+ schema = { screener ( ) ?. formSchema || { } }
43+ submitForm = { submitForm }
44+ />
45+ </ section >
46+ < Show when = { screenerResult ( ) } >
4147 < section class = "flex-1 overflow-y-auto p-4" >
42- < FormRenderer
43- schema = { screener ( ) ?. formSchema || { } }
44- submitForm = { submitForm }
45- />
48+ < EligibilityResults screenerResult = { screenerResult } />
4649 </ section >
47- < Show when = { screenerResult ( ) } >
48- < section class = "flex-1 overflow-y-auto p-4" >
49- < EligibilityResults screenerResult = { screenerResult } />
50- </ section >
51- </ Show >
52- </ div >
53- ) }
54- </ main >
55- </ >
50+ </ Show >
51+ </ div >
52+ ) }
53+ </ main >
5654 ) ;
5755}
You can’t perform that action at this time.
0 commit comments