From 327fd81ec66a3de91ffebec24ca7cd3ed3df96af Mon Sep 17 00:00:00 2001 From: nflnkr Date: Fri, 16 Feb 2024 18:12:33 +0300 Subject: [PATCH] fix QuizType type --- lib/model/settingsData.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/model/settingsData.ts b/lib/model/settingsData.ts index 849987f..6c00fc5 100644 --- a/lib/model/settingsData.ts +++ b/lib/model/settingsData.ts @@ -4,7 +4,7 @@ export type QuizStartpageType = "standard" | "expanded" | "centered" | null; export type QuizStartpageAlignType = "left" | "right" | "center"; -export type QuizType = "quiz" | "form"; +export type QuizType = "quiz" | "form" | null; export type QuizResultsType = true | null;