Skip to content

Commit

Permalink
change applicant ownership tenant to lessee
Browse files Browse the repository at this point in the history
  • Loading branch information
augustlindemer authored Oct 15, 2024
1 parent 9bfd685 commit b2d26ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types/schemas/application/data/Applicant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export interface Ownership {
| 'owner'
| 'owner.sole'
| 'owner.co'
| 'tenant'
| 'lessee'
| 'occupier'
| 'other';
certificate?: 'a' | 'b' | 'c' | 'd';
Expand Down Expand Up @@ -82,7 +82,7 @@ export type Owners = OwnersNoticeGiven | OwnersNoNoticeGiven | OwnersNoticeDate;
export interface BaseOwners {
name: string;
address: Address | string;
interest?: 'owner' | 'tenant' | 'occupier' | 'other';
interest?: 'owner' | 'lessee' | 'occupier' | 'other';
}

// LDC requires `noticeGiven`, and `noNoticeReason` if false
Expand Down

0 comments on commit b2d26ac

Please sign in to comment.