Skip to content

Commit

Permalink
Merge pull request #289 from Propy/dev
Browse files Browse the repository at this point in the history
dev -> main
  • Loading branch information
JayWelsh authored Jan 8, 2025
2 parents a3c108a + d299bcc commit c4cd3e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/CollectionBanner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ const CollectionBanner = (props: ICollectionBanner & PropsFromRedux) => {
if(searchParams.get("landmark") || (filterShims && filterShims.indexOf("landmark") > -1)) {
additionalFilters.push({filter_type: "landmark", value: true});
}
if(searchParams.get("attached_deed")) {
if(searchParams.get("attached_deed") || (filterShims && filterShims.indexOf("attached_deed") > -1)) {
additionalFilters.push({filter_type: "attached_deed", value: true});
}
if(sortBy) {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/CollectionsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const CollectionsPage = () => {
>
{COLLECTIONS_PAGE_ENTRIES && COLLECTIONS_PAGE_ENTRIES.map((entry) =>
<div className={classes.spacer}>
<CollectionBannerContainer showCollectionLink={true} maxRecords={10} showTitle={true} network={entry.network} contractNameOrCollectionNameOrAddress={entry.address} collectionSlug={entry.slug} />
<CollectionBannerContainer showCollectionLink={true} maxRecords={10} showTitle={true} network={entry.network} contractNameOrCollectionNameOrAddress={entry.address} collectionSlug={entry.slug} filterShims={entry.filterShims} overrideTitle={entry.overrideTitle} />
</div>
)}
</GenericPageContainer>
Expand Down

0 comments on commit c4cd3e3

Please sign in to comment.