Skip to content

Commit

Permalink
fix: null-aware operator
Browse files Browse the repository at this point in the history
  • Loading branch information
w8385 committed Oct 13, 2024
1 parent 7428558 commit 5f9996e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/features/contest/screen/contest_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ class _ContestViewState extends State<ContestView> {
MySolvedColor.secondaryBackground,
),
icon: ExtendedImage.asset(
"assets/images/venues/${contests[index].venue?.toLowerCase() ?? "etc"}.png",
"assets/images/venues/${contests[index].venue.toLowerCase()}.png",
width: 24,
),
)
Expand Down

0 comments on commit 5f9996e

Please sign in to comment.