Skip to content

Commit

Permalink
Rent BasicInfo: fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
NC-jsAhonen committed Nov 1, 2024
1 parent b9c84b8 commit 3e599dc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/leases/components/leaseSections/rent/BasicInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ const SeasonalDates = ({

type Props = {
leaseAttributes: Attributes;
receivableTypes: Array<any> | null | undefined;
receivableTypes?: Array<any> | null | undefined;
receivableTypeOptions?: Array<any> | null | undefined;
rent: Record<string, any>;
rentType: string | null | undefined;
};
Expand Down Expand Up @@ -510,7 +511,7 @@ const BasicInfoFree = ({

const BasicInfo = ({
leaseAttributes,
receivableTypeOptions,
receivableTypes,
rent,
rentType
}: Props) => {
Expand Down

0 comments on commit 3e599dc

Please sign in to comment.