File tree Expand file tree Collapse file tree 1 file changed +11
-5
lines changed
Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -220,11 +220,17 @@ class CircuitScreenContent extends StatelessWidget {
220220 )
221221 : Container (),
222222 details['raceReview' ] != null &&
223- details['raceReview' ]['curatedSection' ]['items' ].isNotEmpty
224- ? CuratedSection (
225- details['raceReview' ]['curatedSection' ]['items' ],
226- )
227- : Container (),
223+ details['raceReview' ]['curatedSection' ] != null
224+ ? details['raceReview' ]['curatedSection' ]['items' ].isNotEmpty
225+ ? CuratedSection (
226+ details['raceReview' ]['curatedSection' ]['items' ],
227+ )
228+ : Container ()
229+ : details['raceCuratedArticles' ] != null
230+ ? CuratedSection (
231+ details['raceCuratedArticles' ]['items' ],
232+ )
233+ : Container (),
228234 Padding (
229235 padding: EdgeInsets .only (top: 5 ),
230236 child: Card (
You can’t perform that action at this time.
0 commit comments