Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
alextran1502 committed Nov 26, 2024
1 parent a70f2e6 commit d320cb9
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,13 @@
});
const getUsage = async () => {
[timelineStats, favoriteStats, archiveStats, trashStats] = await Promise.all([
[timelineStats, favoriteStats, archiveStats, trashStats, albumStats] = await Promise.all([
getAssetStatistics({ isArchived: false }),
getAssetStatistics({ isFavorite: true }),
getAssetStatistics({ isArchived: true }),
getAssetStatistics({ isTrashed: true }),
getAlbumStatistics(),
]);
albumStats = await getAlbumStatistics();
};
onMount(async () => {
Expand Down

0 comments on commit d320cb9

Please sign in to comment.