Remove leftover debugging code
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user