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": [
120
],
}
},
"cSpell.words": [
"Linkdy",
"linkdy"
]
}

View File

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

View File

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