mirror of
https://github.com/danbulant/Portfolio
synced 2026-05-24 12:35:31 +00:00
fix: build error
This commit is contained in:
parent
72cea8910a
commit
23fa3f89cc
1 changed files with 13 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue