Skip to content

Commit

Permalink
Merge pull request #1416 from ThatConference/next/feature
Browse files Browse the repository at this point in the history
Promote Next/feature to production
  • Loading branch information
brettski authored Jul 11, 2023
2 parents 4c38f86 + b669e23 commit 5d6198c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "that-us",
"version": "3.11.3",
"version": "3.11.4",
"description": "THAT.us website",
"main": "index.js",
"type": "module",
Expand Down
4 changes: 3 additions & 1 deletion src/_dataSources/api.that.tech/orders/queries.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,9 @@ export default (fetch) => {
}

function queryMyTicketAllocations() {
return queryMyAllocations().then((r) => r.filter((t) => t.product.type === 'TICKET'));
return queryMyAllocations().then((r) =>
r.filter((t) => ['TICKET', 'TRAINING', 'FAMILY', 'FOOD'].includes(t.product.type))
);
}

function queryMyBulkAllocations(pageSize = defaultPageSize) {
Expand Down

1 comment on commit 5d6198c

@vercel
Copy link

@vercel vercel bot commented on 5d6198c Jul 11, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.