Skip to content

Commit

Permalink
Merge pull request #71 from City-of-Helsinki/fix/applicant_type_enums
Browse files Browse the repository at this point in the history
Fixed ApplicantType enums to be similar to backend regardless the selected language
  • Loading branch information
PasiVuohijoki authored Sep 21, 2023
2 parents 6700619 + 62a454a commit 502a60b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/application/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,10 +240,10 @@ export enum ApplicationFormTopLevelSectionFlavor {
}

export enum ApplicantTypes {
PERSON = 'Person',
COMPANY = 'Company',
BOTH = 'Both',
UNKNOWN = 'Unknown',
PERSON = 'person',
COMPANY = 'company',
BOTH = 'both',
UNKNOWN = 'unknown',

// UI only states
UNSELECTED = 'unselected',
Expand Down

0 comments on commit 502a60b

Please sign in to comment.