diff --git a/src/model/quizSettings.ts b/src/model/quizSettings.ts index d99cdd46..d11d871e 100644 --- a/src/model/quizSettings.ts +++ b/src/model/quizSettings.ts @@ -59,6 +59,8 @@ export interface QuizConfig { }; }; formContact: { + title: string; + desc: string; name: FCField; email: FCField; phone: FCField; @@ -123,6 +125,8 @@ export const defaultQuizConfig: QuizConfig = { law: "", }, formContact: { + title: "", + desc: "", name: { text: "", innerText: "", diff --git a/src/pages/ContactFormPage/ContactFormPage.tsx b/src/pages/ContactFormPage/ContactFormPage.tsx index e6cac120..382bd023 100644 --- a/src/pages/ContactFormPage/ContactFormPage.tsx +++ b/src/pages/ContactFormPage/ContactFormPage.tsx @@ -115,8 +115,8 @@ export default function ContactFormPage() {