Skip to content

Commit

Permalink
fix: fixed issue in irl fetch guests by location api
Browse files Browse the repository at this point in the history
  • Loading branch information
navneethkrish authored and madan-ideas2it committed Nov 15, 2024
1 parent 9a18cbd commit f3cb1b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web-api/src/pl-events/pl-event-guests.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export class PLEventGuestsService {
query: Prisma.PLEventGuestFindManyArgs
) {
try {
const events = await this.eventLocationsService.getUpcomingEventsByLocation(locationUid);
const events = (await this.eventLocationsService.getPLEventLocationByUid(locationUid)).events;
return await this.prisma.pLEventGuest.findMany({
where: {
eventUid: {
Expand Down

0 comments on commit f3cb1b7

Please sign in to comment.