Skip to content

Commit

Permalink
fix(mobile): update useEffect to run on any change instead of only on…
Browse files Browse the repository at this point in the history
… lead (immich-app#3650)

-- this change is mainly for the AlbumInfoListTile widget
  • Loading branch information
jorge-dev authored Aug 12, 2023
1 parent 7948819 commit b790354
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobile/lib/modules/backup/ui/album_info_list_tile.dart
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class AlbumInfoListTile extends HookConsumerWidget {
albumInfo.assetCount.then((value) => assetCount.value = value);
return null;
},
[],
[albumInfo],
);

buildImageFilter() {
Expand Down

0 comments on commit b790354

Please sign in to comment.