1
0
mirror of https://github.com/immich-app/immich.git synced 2024-11-24 08:52:28 +02:00

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

-- this change is mainly for the AlbumInfoListTile widget
This commit is contained in:
Jorge Avila 2023-08-12 09:02:24 -06:00 committed by GitHub
parent 7948819e0c
commit b790354f9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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