We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a825a9c commit 3da3930Copy full SHA for 3da3930
1 file changed
lib/Screens/Racing/circuit.dart
@@ -220,11 +220,17 @@ class CircuitScreenContent extends StatelessWidget {
220
)
221
: Container(),
222
details['raceReview'] != null &&
223
- details['raceReview']['curatedSection']['items'].isNotEmpty
224
- ? CuratedSection(
225
- details['raceReview']['curatedSection']['items'],
226
- )
227
- : Container(),
+ details['raceReview']['curatedSection'] != null
+ ? details['raceReview']['curatedSection']['items'].isNotEmpty
+ ? CuratedSection(
+ details['raceReview']['curatedSection']['items'],
+ )
228
+ : Container()
229
+ : details['raceCuratedArticles'] != null
230
231
+ details['raceCuratedArticles']['items'],
232
233
+ : Container(),
234
Padding(
235
padding: EdgeInsets.only(top: 5),
236
child: Card(
0 commit comments