[mob][photos] Stop passing to GalleryFileWidget as it's no longer needed

This commit is contained in:
ashilkn
2024-09-27 17:44:27 +05:30
parent fa3a9f4f52
commit 2d7e58d743
2 changed files with 0 additions and 3 deletions

View File

@@ -22,7 +22,6 @@ class GalleryFileWidget extends StatelessWidget {
final String tag;
final int photoGridSize;
final int? currentUserID;
final List<EnteFile> filesInGroup;
final GalleryLoader asyncLoader;
const GalleryFileWidget({
required this.file,
@@ -31,7 +30,6 @@ class GalleryFileWidget extends StatelessWidget {
required this.tag,
required this.photoGridSize,
required this.currentUserID,
required this.filesInGroup,
required this.asyncLoader,
super.key,
});

View File

@@ -38,7 +38,6 @@ class GalleryGridViewWidget extends StatelessWidget {
tag: tag,
photoGridSize: photoGridSize,
currentUserID: currentUserID,
filesInGroup: filesInGroup,
asyncLoader: asyncLoader,
);
},