From 42f8c0dbfce7658b8bf3a3202b3cec21cf177722 Mon Sep 17 00:00:00 2001 From: Sindre Kjelsrud Date: Fri, 26 Jan 2024 14:53:16 +0100 Subject: [PATCH] :children_crossing: remove default values in userform Co-authored-by: haraldnilsen Signed-off-by: Sindre Kjelsrud --- frontend/src/routes/userform/+page.svelte | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/frontend/src/routes/userform/+page.svelte b/frontend/src/routes/userform/+page.svelte index 9a5e329..86f5a12 100644 --- a/frontend/src/routes/userform/+page.svelte +++ b/frontend/src/routes/userform/+page.svelte @@ -7,13 +7,13 @@ import { goto } from "$app/navigation"; - let age: string = "18-20" - let education: string = "VGS" - let healthcare_personnel: string = "Ja" - let is_licensed: string = "Nei" - let gender: string = "Mann" - let has_answered_before: string = "Nei" - let county: string = "Vestland" + let age: string = "" + let education: string = "" + let healthcare_personnel: string = "" + let is_licensed: string = "" + let gender: string = "" + let has_answered_before: string = "" + let county: string = "" let firstUserQuestion: number = 0 @@ -50,7 +50,7 @@ @@ -65,7 +65,7 @@