This commit is contained in:
Fabian Freund
2025-10-02 18:52:34 +02:00
parent 781a982e88
commit 1716219055
2 changed files with 2 additions and 2 deletions
@@ -425,7 +425,7 @@ class ViewTabsSheetWidget extends HookConsumerWidget {
final itemCount =
filteredTabEntities.value.length +
//Limit to 3 sugegstions for now
math.max<int>(suggestedTabEntities.value.length, 3);
math.min<int>(suggestedTabEntities.value.length, 3);
final activeTab = ref.watch(selectedTabProvider);