Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
remko48 committed Dec 18, 2024
1 parent 7a33d15 commit d102f0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/entities/klanten/klanten.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export class Klant implements TKlant {
public achternaam: string
public bsn: string
public geboortedatum: string
public geslacht: "man" | "vrouw" | "overige"
public geslacht: 'man' | 'vrouw' | 'overige'
public land: string

public telefoonnummer: string
Expand Down Expand Up @@ -71,7 +71,7 @@ export class Klant implements TKlant {
achternaam: z.string(),
bsn: z.string(),
geboortedatum: z.string(),
geslacht: z.enum(["man", "vrouw", "overige"]).or(z.null()),
geslacht: z.enum(['man', 'vrouw', 'overige']).or(z.null()),
land: z.string(),
telefoonnummer: z.string(),
emailadres: z.string().email(),
Expand Down

0 comments on commit d102f0c

Please sign in to comment.