Skip to content

Commit

Permalink
Fixed dob and email showing as undefined in exported csv (thewca#10334)
Browse files Browse the repository at this point in the history
  • Loading branch information
pranav-027 authored Nov 29, 2024
1 parent 2510dcc commit 78bcde9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ function V3csvExport(selected, registrations, competition) {
registration.user.name
},${registration.user.country.name},${
registration.user.wca_id
},${registration.dob},${
},${registration.user.dob},${
registration.user.gender
},${competition.event_ids.map((evt) => (registration.competing.event_ids.includes(evt) ? '1' : '0'))},${
registration.email
registration.user.email
},${
registration.guests // IP feel always blank
},"",${
Expand Down

0 comments on commit 78bcde9

Please sign in to comment.