Skip to content

Commit

Permalink
GAP-2118 fixing enum values
Browse files Browse the repository at this point in the history
  • Loading branch information
DomWestAnd committed Aug 24, 2023
1 parent f2e1d35 commit a09866a
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@

public enum GrantApplicantOrganisationType {

LIMITED_COMPANY("Limited Company"), UNLIMITED_COMPANY("Unlimited Company"),
REGISTERED_CHARITY("Registered Charity"), OTHER("Other");
LIMITED_COMPANY("Limited company"), NON_LIMITED_COMPANY("Non-limited company"),
UNLIMITED_COMPANY("Unlimited company"), REGISTERED_CHARITY("Registered charity"),
UNREGISTERED_CHARITY("Unregistered charity"), OTHER("Other");

private String name;

Expand Down

0 comments on commit a09866a

Please sign in to comment.