Skip to content

Commit

Permalink
Merge pull request #302 from elmadev/profile-excluded-tags
Browse files Browse the repository at this point in the history
fix(replays): fix excluding replay tags on profile page
  • Loading branch information
sunehs authored Feb 7, 2025
2 parents 30fff73 + e187325 commit ec2cdaa
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/features/ReplayList/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,14 @@ export default {
page: payload.page,
pageSize: payload.pageSize,
tags: payload.tags,
excludedTags: payload.excludedTags,
});
} else if (payload.uploadedBy) {
get = await ReplayUploadedBy(payload.uploadedBy, {
page: payload.page,
pageSize: payload.pageSize,
tags: payload.tags,
excludedTags: payload.excludedTags,
});
} else {
get = await Replays(payload);
Expand Down

0 comments on commit ec2cdaa

Please sign in to comment.