Skip to content

Commit f4e437b

Browse files
authored
fix applicationData first/lastName fields being Boolean (am i stupid)
1 parent 7bfd301 commit f4e437b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

services/registration/src/models/application.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,10 @@ const applicationSchema = new Schema<Application>(
121121
},
122122
applicationData: {
123123
firstName: {
124-
type: Boolean,
124+
type: String,
125125
},
126126
lastName: {
127-
type: Boolean,
127+
type: String,
128128
},
129129
adult: {
130130
type: Boolean,

0 commit comments

Comments
 (0)