Skip to content

Commit

Permalink
Little fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
myavuzokumus committed Dec 17, 2023
1 parent 1af47da commit 3cb8d8b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/data_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class DataService {
}
}

Future<List<String>> getSuggestion(final String suggestionWord, String uuid) async {
Future<List<String>> getSuggestion(final String suggestionWord, final String uuid) async {

final baseURL = Uri.parse("https://$targetedServer/api/places");

Expand Down
4 changes: 2 additions & 2 deletions lib/pages/main_page_widgets/next_days_card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ class NextDaysCard extends StatelessWidget {
});
}*/

List<DailyWeather>? dayDetails = null;
List<String>? nextDay = null;
List<DailyWeather>? dayDetails;
List<String>? nextDay;
DailyWeather? yesterday;

if (lastSelectedCity != "Select City" && returnedJsonData.isNotEmpty) {
Expand Down

0 comments on commit 3cb8d8b

Please sign in to comment.