Remove leftover debugging code

This commit is contained in:
Roman Krček
2025-06-28 00:52:01 +02:00
parent ae9cedf51c
commit e23955f326

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;