From 29a96a7a59d86a0ee21190fc032166426d34cc69 Mon Sep 17 00:00:00 2001
From: Matthew Fosse <matt@fosse.co>
Date: Mon, 22 Jul 2024 16:28:27 -0700
Subject: [PATCH] fix popup2

---
 lib/view_model/dashboard/dashboard_view_model.dart | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/view_model/dashboard/dashboard_view_model.dart b/lib/view_model/dashboard/dashboard_view_model.dart
index 98bfb8f5b..d3527f997 100644
--- a/lib/view_model/dashboard/dashboard_view_model.dart
+++ b/lib/view_model/dashboard/dashboard_view_model.dart
@@ -372,7 +372,7 @@ abstract class DashboardViewModelBase with Store {
   bool mwebScanningActive = false;
 
   @computed
-  bool get hasEnabledMwebBefore => !settingsStore.hasEnabledMwebBefore;
+  bool get hasEnabledMwebBefore => settingsStore.hasEnabledMwebBefore;
 
   @action
   void setMwebScanningActive(bool active) {