Skip to content

Commit

Permalink
Merge pull request #441 from City-of-Helsinki/fix/applicant_type_enum
Browse files Browse the repository at this point in the history
Fixed applicant type enum to represent the enum in backend
  • Loading branch information
PasiVuohijoki authored Sep 21, 2023
2 parents 8249df6 + c0819f5 commit 4b22c8d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/application/enums.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ export const ApplicantInfoCheckExternalTypes = {
TRADE_REGISTER_INQUIRY: 'trade_register_inquiry',
};
export const ApplicantTypes = {
PERSON: 'Person',
COMPANY: 'Company',
BOTH: 'Both',
PERSON: 'person',
COMPANY: 'company',
BOTH: 'both',
UNKNOWN: null,

// UI only states
Expand Down

0 comments on commit 4b22c8d

Please sign in to comment.