6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit 483fdc90

AuthorMikkel Thygesen<mikkelet@gmail.com>
Date2026-02-17 13:01:20 +0100
2085: lint

Changed files

comwell_key_app/lib/presentation/app/app_cubit.dart          | 2 +-
 comwell_key_app/lib/presentation/app/app_event_listener.dart | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

Diff

diff --git a/comwell_key_app/lib/presentation/app/app_cubit.dart b/comwell_key_app/lib/presentation/app/app_cubit.dart
index 3e42690c..486f4c11 100644
--- a/comwell_key_app/lib/presentation/app/app_cubit.dart
+++ b/comwell_key_app/lib/presentation/app/app_cubit.dart
@@ -15,7 +15,7 @@ class AppCubit extends BaseCubit<AppState> {
void _init() {
appLinksSubscription = AppLinks().uriLinkStream.listen((uri) {
- debugPrint("qqq AppLinks uri=$uri");
+ debugPrint("qqq uri=$uri");
final scheme = uri.scheme.toLowerCase();
final isDeeplink = scheme == "https" || scheme == "comwell";
if (isDeeplink) {
diff --git a/comwell_key_app/lib/presentation/app/app_event_listener.dart b/comwell_key_app/lib/presentation/app/app_event_listener.dart
index 97c003dd..81cdbeae 100644
--- a/comwell_key_app/lib/presentation/app/app_event_listener.dart
+++ b/comwell_key_app/lib/presentation/app/app_event_listener.dart
@@ -24,7 +24,6 @@ class AppEventListener extends StatelessWidget {
void _onNavigateEvent(BuildContext context, Uri uri) {
final route = "/${uri.host}${uri.path}";
final routeWithData = "$route?${uri.query}";
- print("qqq route=${route}");
switch (route) {
case AppRoutes.splash:
// no-op, app will open at whatever screen it was showing