Skip to content

Commit

Permalink
Merge pull request #361 from poap-xyz/release/v1.15.4
Browse files Browse the repository at this point in the history
Release v1.15.4
  • Loading branch information
jm42 authored Jun 13, 2024
2 parents 44b0a0c + d1adade commit 4a3c555
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@poap-xyz/poap-family",
"version": "1.15.3",
"version": "1.15.4",
"author": {
"name": "POAP",
"url": "https://poap.xyz"
Expand Down
5 changes: 3 additions & 2 deletions src/hooks/useEventsInCommon.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ function useEventsInCommon(eventIds, eventsOwners, all = false, force = false) {
completed[eventId] &&
(loadedOwners[eventId] ?? 0) === eventsOwners[eventId].length &&
inCommon[eventId] != null &&
inCommon[eventId].ts == null
inCommon[eventId].ts == null &&
!caching[eventId]
) {
const inCommonProcessed = filterInCommon(
inCommon[eventId].inCommon
Expand Down Expand Up @@ -92,7 +93,7 @@ function useEventsInCommon(eventIds, eventsOwners, all = false, force = false) {
}
}
},
[eventIds, eventsOwners, completed, loadedOwners, inCommon]
[eventIds, eventsOwners, loadedOwners, completed, caching, inCommon]
)

/**
Expand Down

0 comments on commit 4a3c555

Please sign in to comment.