From 60af3a400323e7d82047297e463aa6eee3c85e91 Mon Sep 17 00:00:00 2001 From: Brandon Wees Date: Mon, 1 Sep 2025 20:42:54 -0500 Subject: [PATCH] fix: show TabShellRoute when cold starting from deeplink (#21376) --- mobile/lib/services/deep_link.service.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/lib/services/deep_link.service.dart b/mobile/lib/services/deep_link.service.dart index 1b717a6eeb..b675b24418 100644 --- a/mobile/lib/services/deep_link.service.dart +++ b/mobile/lib/services/deep_link.service.dart @@ -66,7 +66,7 @@ class DeepLinkService { return DeepLink([ // we need something to segue back to if the app was cold started // TODO: use MainTimelineRoute this when beta is default - if (isColdStart) (Store.isBetaTimelineEnabled) ? const MainTimelineRoute() : const PhotosRoute(), + if (isColdStart) (Store.isBetaTimelineEnabled) ? const TabShellRoute() : const PhotosRoute(), route, ]); }