Skip to content

Commit

Permalink
[race hub] should fix info button and update race programme link
Browse files Browse the repository at this point in the history
  • Loading branch information
BrightDV committed Mar 1, 2024
1 parent 012cadd commit 6c70c0c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/Screens/circuit.dart
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ class CircuitScreen extends StatelessWidget {
),
),
),
snapshot.data!['links'].isNotEmpty
snapshot.data!['links'] != null
? Padding(
padding: const EdgeInsets.symmetric(
vertical: 3,
Expand Down Expand Up @@ -238,7 +238,7 @@ class CircuitScreen extends StatelessWidget {
),
),
),
snapshot.data!['raceResults'].isNotEmpty
snapshot.data!['raceResults'] != null
? Padding(
padding: const EdgeInsets.all(
10,
Expand Down
2 changes: 1 addition & 1 deletion lib/Screens/grand_prix_running_details.dart
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ class GrandPrixRunningScreen extends StatelessWidget {
),
onTap: () => launchUrl(
Uri.parse(
"https://raceprogramme.formula1.com/#/catalogue",
"https://web.formula1rp.com/",
),
),
),
Expand Down

0 comments on commit 6c70c0c

Please sign in to comment.