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 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;