Explorar el Código

fix(mobile): update useEffect to run on any change instead of only on lead (#3650)

-- this change is mainly for the AlbumInfoListTile widget
Jorge Avila hace 1 año
padre
commit
b790354f9a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      mobile/lib/modules/backup/ui/album_info_list_tile.dart

+ 1 - 1
mobile/lib/modules/backup/ui/album_info_list_tile.dart

@@ -41,7 +41,7 @@ class AlbumInfoListTile extends HookConsumerWidget {
         albumInfo.assetCount.then((value) => assetCount.value = value);
         return null;
       },
-      [],
+      [albumInfo],
     );
 
     buildImageFilter() {