diff --git a/frontend/src/routes/(admin)/admin/(authenticated)/candidate/[code=application]/+page.server.ts b/frontend/src/routes/(admin)/admin/(authenticated)/candidate/[code=application]/+page.server.ts index b53c42f..020474b 100644 --- a/frontend/src/routes/(admin)/admin/(authenticated)/candidate/[code=application]/+page.server.ts +++ b/frontend/src/routes/(admin)/admin/(authenticated)/candidate/[code=application]/+page.server.ts @@ -7,7 +7,19 @@ export const load: PageServerLoad = async ({ fetch, params }) => { const codeNumber = Number(code); let candidateData: CandidateData = { - candidate: {}, + candidate: { + name: '', + surname: '', + birthplace: '', + birthdate: '', + address: '', + telephone: '', + citizenship: '', + email: '', + sex: '', + study: '', + personalIdNumber: '' + }, parents: [] }; try {