Skip to content

Commit

Permalink
fixed lowercase emails
Browse files Browse the repository at this point in the history
  • Loading branch information
dennis committed Mar 1, 2024
1 parent e8d4083 commit 9559735
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion services/registrations/handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ import awsConfig from "../../lib/config";
sends an email to the user if registration status is included in data, and
if they are registered, waitlisted, or cancelled, but not if checkedIn
*/
export async function updateHelper(data, createNew, email, fname) {
export async function updateHelper(data, createNew, emailProp, fname) {
const email = emailProp.toLowerCase();
const {
eventID, year, dynamicResponses, registrationStatus, applicationStatus
} = data;
Expand Down

0 comments on commit 9559735

Please sign in to comment.