Code improvements

This commit is contained in:
Juan Gilsanz Polo
2025-04-03 22:07:35 +02:00
parent f330c2f6b5
commit badc2b8904
3 changed files with 5 additions and 10 deletions

View File

@@ -6,5 +6,9 @@
"editor.rulers": [ "editor.rulers": [
120 120
], ],
} },
"cSpell.words": [
"Linkdy",
"linkdy"
]
} }

View File

@@ -143,9 +143,6 @@ class _List extends ConsumerWidget {
case FilteredBookmarksMode.shared: case FilteredBookmarksMode.shared:
return t.bookmarks.shared; return t.bookmarks.shared;
default:
return "";
} }
} }
@@ -159,9 +156,6 @@ class _List extends ConsumerWidget {
case FilteredBookmarksMode.shared: case FilteredBookmarksMode.shared:
return t.tags.filteredBookmarks.noSharedBookmarks; return t.tags.filteredBookmarks.noSharedBookmarks;
default:
return "";
} }
} }

View File

@@ -126,9 +126,6 @@ class CustomTabContentList extends StatelessWidget {
), ),
); );
} }
default:
return const SizedBox();
} }
} }
} }