From 43f2f56530fc3993ce4abe1d68a16bc83e170e7e Mon Sep 17 00:00:00 2001 From: Yaros Date: Wed, 10 Jun 2026 16:02:36 +0200 Subject: [PATCH] fix(mobile): map timeline layout crash (#28878) --- .../widgets/bottom_sheet/map_bottom_sheet.widget.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/lib/presentation/widgets/bottom_sheet/map_bottom_sheet.widget.dart b/mobile/lib/presentation/widgets/bottom_sheet/map_bottom_sheet.widget.dart index 3770c5d32d..f905940c5e 100644 --- a/mobile/lib/presentation/widgets/bottom_sheet/map_bottom_sheet.widget.dart +++ b/mobile/lib/presentation/widgets/bottom_sheet/map_bottom_sheet.widget.dart @@ -23,7 +23,7 @@ class MapBottomSheet extends StatelessWidget { resizeOnScroll: false, actions: [], backgroundColor: context.themeData.colorScheme.surface, - slivers: [const SliverFillRemaining(hasScrollBody: false, child: _ScopedMapTimeline())], + slivers: [const SliverFillRemaining(hasScrollBody: true, child: _ScopedMapTimeline())], ); } }