Skip to content

Commit

Permalink
chore: fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
BCerki committed Jan 17, 2025
1 parent 664c9c2 commit fb07630
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ export const createAdministrationRegistrationInformationSchema = async (
// fetch db values that are dropdown options
const regulatedProducts: { id: number; name: string }[] =
await getRegulatedProducts();
const contacts: { id: number; first_name: string; last_name: string }[] =
await getContacts();
const contacts: {
items: [{ id: number; first_name: string; last_name: string }];
} = await getContacts();
const isRegulatedProducts =
registrationPurposeValue ===
RegistrationPurposes.OBPS_REGULATED_OPERATION.valueOf();
Expand Down

0 comments on commit fb07630

Please sign in to comment.