diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte
index 0c78b673..2ca5c342 100644
--- a/src/routes/+layout.svelte
+++ b/src/routes/+layout.svelte
@@ -125,7 +125,6 @@
typeof data?.cookieConsent !== "undefined" ? false : true;
onMount(async () => {
- setMode(data.themeMode);
if (data?.user?.id) {
await loadWorker();
/*
diff --git a/src/routes/options-flow/+page.svelte b/src/routes/options-flow/+page.svelte
index 8bca6c78..a889acf5 100644
--- a/src/routes/options-flow/+page.svelte
+++ b/src/routes/options-flow/+page.svelte
@@ -1381,7 +1381,7 @@
on:click={() => {
handleChangeValue(newValue);
}}
- class="block w-full bg-white dark:bg-default border-b border-gray-300 dark:border-gray-600 px-4 py-1.5 text-left text-sm sm:text-[1rem] rounded last:border-0 sm:hover:bg-gray-100 focus:bg-blue-100 focus:text-gray-900 focus:outline-hidden"
+ class="block w-full cursor-pointer border-b border-gray-300 dark:border-gray-600 px-4 py-1.5 text-left text-sm sm:text-[1rem] rounded last:border-0 focus:bg-blue-100 focus:text-gray-900 focus:outline-hidden"
>
{ruleCondition[row?.rule]
?.replace("under", "Under")