development #13

Merged
erman merged 9 commits from development into main 2025-06-29 17:17:21 +02:00
Showing only changes of commit e23955f326 - Show all commits

View File

@@ -32,20 +32,12 @@
let step: number = $state(0); let step: number = $state(0);
// let stepConditions = $derived([ let stepConditions = $derived([
// authorized, authorized,
// !!new_event?.name, !!event?.name,
// !!participants?.length, !!participants?.length,
// !!subject && !!body !!email.subject
// ]); ]);
// for debugging purpouses
let stepConditions = [
true,
true,
true,
true
];
function nextStep() { function nextStep() {
if (step < steps.length - 1) step += 1; if (step < steps.length - 1) step += 1;