Skip to content

Commit

Permalink
attempting to fix relationship details
Browse files Browse the repository at this point in the history
  • Loading branch information
JKong05 committed Nov 3, 2024
1 parent 2d71595 commit 0dc097f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/interfaces/passenger.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ export interface PassengerData {
Age: number;
"Latest Trip": string;
Notes?: string;
"Relationship": string;
"Relationship": string[];
}
1 change: 1 addition & 0 deletions src/util/test-data.util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ export const createTestPassengerData = (
max: 80,
}),
"Latest Trip": faker.date.recent().toISOString(),
Relationship: faker.helpers.arrayElements(["Mother", "Father", "Step-mother", "Step-father", "Legal Guardian", "Spouse", "Family Member", "Other Caregiver"]),
...manualData,
};
};
Expand Down

0 comments on commit 0dc097f

Please sign in to comment.