Fix bug in checking for uploaded item

This commit is contained in:
Neeraj Gupta 2023-08-30 16:38:22 +05:30
parent 7d8fcafee4
commit 6a0ad1a80a

View file

@ -12,7 +12,7 @@ class AddedByWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
if (file.isUploaded) {
if (!file.isUploaded) {
return const SizedBox.shrink();
}
String? addedBy;