fix: correct conversion of username parameter (#23203)
Co-authored-by: Somay Chauhan <somaychauhan98@gmail.com>
This commit is contained in:
co-authored by
Somay Chauhan
parent
9412226a76
commit
58930c4c5e
@@ -36,7 +36,7 @@ export const useAtomGetPublicEvent = ({ username, eventSlug, isTeamEvent, teamId
|
||||
const params: Record<string, any> = {
|
||||
isTeamEvent,
|
||||
teamId,
|
||||
username: getUsernameList(username ?? "").join(",")
|
||||
username: getUsernameList(username ?? "").join("+")
|
||||
};
|
||||
|
||||
// Only include orgId if it's not 0
|
||||
|
||||
Reference in New Issue
Block a user