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 stepConditions = $derived([
// authorized,
// !!new_event?.name,
// !!participants?.length,
// !!subject && !!body
// ]);
// for debugging purpouses
let stepConditions = [
true,
true,
true,
true
];
let stepConditions = $derived([
authorized,
!!event?.name,
!!participants?.length,
!!email.subject
]);
function nextStep() {
if (step < steps.length - 1) step += 1;