Skip to content

Commit d61a84a

Browse files
authored
Remove updated_at from updateData in inviteService
Removed updated_at field from updateData in inviteService.
1 parent 2f6a1fa commit d61a84a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/services/inviteService.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -725,8 +725,8 @@ export const updateUserRsvp = async (
725725

726726
// In the update operation, replace accommodation with new fields:
727727
const updateData: any = {
728-
rsvp: data.rsvp,
729-
updated_at: new Date(),
728+
rsvp: data.rsvp
729+
// updated_at: new Date(),
730730
};
731731

732732
if (data.food !== undefined) updateData.food = data.food;
@@ -1136,4 +1136,4 @@ export const getEventGuestList = async (eventId: string, userId: string, filters
11361136
error: error instanceof Error ? error.message : 'Failed to get guest list'
11371137
};
11381138
}
1139-
};
1139+
};

0 commit comments

Comments
 (0)