strict mode oopsies

This commit is contained in:
iw0 2024-05-29 14:05:45 +02:00
parent 8b482b1245
commit 04e92f771a

View File

@ -64,7 +64,7 @@ const bankDetailConfigKeys = ["pymt__iban", "pymt__bic"];
function processSingleAddedNode(n) { function processSingleAddedNode(n) {
if (currentStage.match(n)) { if (currentStage.match(n)) {
console.info(currentStage.name, "matched: ", n); console.info(currentStage.name, "matched: ", n);
success = currentStage.execute(n) const success = currentStage.execute(n)
if (success) { if (success) {
console.info(currentStage.name, "executed successfully"); console.info(currentStage.name, "executed successfully");
} else { } else {