Skip to content

Commit

Permalink
Merge pull request #277 from AlexTelon/bug/#220-Charging-starts-when-…
Browse files Browse the repository at this point in the history
…scanned-charger-does-not-exist

Fixed charging starting when it shouldn't
  • Loading branch information
reeshy authored Oct 3, 2023
2 parents 50aef0a + 18a4fe8 commit c547be9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/ui/screens/home_page/home_viewmodel.dart
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,9 @@ class HomeViewModel extends BaseViewModel {
_bottomSheetService
.showCustomSheet(variant: SheetType.mapBottomSheet, data: data)
.then((value) {
activeTopSheet = true;
if (value != null) {
activeTopSheet = true;
}
notifyListeners();
});
}
Expand Down

0 comments on commit c547be9

Please sign in to comment.