chore: using final

This commit is contained in:
Alex
2025-03-17 14:04:49 -05:00
parent fc921fbe9f
commit 04ce6b3bcb

View File

@@ -36,7 +36,7 @@ class BackupAlbumSelectionPage extends HookConsumerWidget {
[],
);
var filteredAlbums = albums.where((album) {
final filteredAlbums = albums.where((album) {
return album.name.toLowerCase().contains(searchQuery.value.toLowerCase());
}).toList();