Skip to content

Commit

Permalink
fix: updated the param
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhishekPAnil committed Dec 13, 2024
1 parent fbe61de commit 7cb38dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/Dashboard/Events/Events.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ function Events() {
let sortQuery = new URLSearchParams();
let usersQuery, publicationQuery, organizerQuery;

userFilter?.forEach((user) => query.append('user', user));
userFilter?.forEach((user) => query.append('created-by', user));
organizerFilter?.forEach((organizer) => query.append('person-organization', organizer));
filter?.publication?.forEach((state) => query.append('publish-state', state));
if (userFilter?.length > 0) usersQuery = encodeURIComponent(userFilter);
Expand Down

0 comments on commit 7cb38dd

Please sign in to comment.