mirror of
https://github.com/danbulant/Portfolio
synced 2026-05-26 21:41:50 +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);
|
const codeNumber = Number(code);
|
||||||
|
|
||||||
let candidateData: CandidateData = {
|
let candidateData: CandidateData = {
|
||||||
candidate: {},
|
candidate: {
|
||||||
|
name: '',
|
||||||
|
surname: '',
|
||||||
|
birthplace: '',
|
||||||
|
birthdate: '',
|
||||||
|
address: '',
|
||||||
|
telephone: '',
|
||||||
|
citizenship: '',
|
||||||
|
email: '',
|
||||||
|
sex: '',
|
||||||
|
study: '',
|
||||||
|
personalIdNumber: ''
|
||||||
|
},
|
||||||
parents: []
|
parents: []
|
||||||
};
|
};
|
||||||
try {
|
try {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue