diff --git a/WebApp/src/routes/onboarding/+page.svelte b/WebApp/src/routes/onboarding/+page.svelte index ea1178f..9c8a0a8 100644 --- a/WebApp/src/routes/onboarding/+page.svelte +++ b/WebApp/src/routes/onboarding/+page.svelte @@ -8,6 +8,8 @@ import { Input } from '$lib/components/ui/input/index.js'; import { Label } from '$lib/components/ui/label/index.js'; import { ToggleGroup, ToggleGroupItem } from '$lib/components/ui/toggle-group/index.js'; + + let showAdvancedSettings = false; @@ -58,16 +60,48 @@ -
- - appController.setOnboardingField('pushToken', (event.currentTarget as HTMLInputElement).value)} - /> +
+
+
+ +

Optional device settings and push configuration.

+
+ +
+ + {#if showAdvancedSettings} +
+
+ + appController.setOnboardingField('pushToken', (event.currentTarget as HTMLInputElement).value)} + /> +
+
+ {/if}