diff --git a/app/lib/features/geckoview/features/browser/presentation/widgets/sheets/view_tabs.dart b/app/lib/features/geckoview/features/browser/presentation/widgets/sheets/view_tabs.dart index b92203ca..27893e34 100644 --- a/app/lib/features/geckoview/features/browser/presentation/widgets/sheets/view_tabs.dart +++ b/app/lib/features/geckoview/features/browser/presentation/widgets/sheets/view_tabs.dart @@ -425,7 +425,7 @@ class ViewTabsSheetWidget extends HookConsumerWidget { final itemCount = filteredTabEntities.value.length + //Limit to 3 sugegstions for now - math.max(suggestedTabEntities.value.length, 3); + math.min(suggestedTabEntities.value.length, 3); final activeTab = ref.watch(selectedTabProvider); diff --git a/app/pubspec.yaml b/app/pubspec.yaml index 7a5f5353..1a9590ee 100644 --- a/app/pubspec.yaml +++ b/app/pubspec.yaml @@ -2,7 +2,7 @@ name: weblibre description: "The Privacy-Focused & AI-Powered Research Browser" publish_to: 'none' resolution: workspace -version: 0.9.25-alpha-7+28 +version: 0.9.25-alpha-8+28 environment: sdk: '>=3.8.0 <4.0.0'