Skip to content

Commit

Permalink
Merge branch 'feature/fix-lint-code' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
BaptisteLecat committed Dec 18, 2023
2 parents 8167627 + 36d8d0b commit 773f754
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class LocationController extends StateNotifier<AsyncValue<void>> {
Future<void> generate(
{required String locationId, required WeatherOneCall weather}) async {
state = const AsyncLoading();
String token = await appUser.firebaseAppUser!.getIdToken();
String? token = await appUser.firebaseAppUser!.getIdToken();
String apiKey = "api_key";
String contentType = "application/json";
String timezoneString = weather.timezone!;
Expand Down

0 comments on commit 773f754

Please sign in to comment.