Updated to Svelte 5

This commit is contained in:
Mawoka
2025-09-21 12:42:04 +02:00
parent fa533257b3
commit a88cf13f82
137 changed files with 2279 additions and 1948 deletions
@@ -10,12 +10,16 @@ SPDX-License-Identifier: MPL-2.0
import SharesPopover from '$lib/quiztivity/shares_popover.svelte';
import { goto } from '$app/navigation';
export let data: PageData;
interface Props {
data: PageData;
}
let saving = false;
let { data }: Props = $props();
let quiztivity = data.quiztivity;
let shares_menu_open = false;
let saving = $state(false);
let quiztivity = $state(data.quiztivity);
let shares_menu_open = $state(false);
const save_quiztivity = async () => {
saving = true;