chore: fix eslints and spelling

This commit is contained in:
Björn Otgaar
2025-11-18 18:49:11 +01:00
parent bb4e9d0b26
commit bd7620a182
2 changed files with 9 additions and 46 deletions

View File

@@ -1,6 +1,6 @@
import StartNode, { StartConnects, StartReduce } from "./nodes/StartNode";
import EndNode, { EndConnects, EndReduce } from "./nodes/EndNode";
import PhaseNode, { PhaseConnects, PhaseReduce, PhaseReduce2 } from "./nodes/PhaseNode";
import PhaseNode, { PhaseConnects, PhaseReduce } from "./nodes/PhaseNode";
import NormNode, { NormConnects, NormReduce } from "./nodes/NormNode";
import { EndNodeDefaults } from "./nodes/EndNode.default";
import { StartNodeDefaults } from "./nodes/StartNode.default";
@@ -42,7 +42,7 @@ export const NodeDefaults = {
export const NodeReduces = {
start: StartReduce,
end: EndReduce,
phase: PhaseReduce2,
phase: PhaseReduce,
norm: NormReduce,
goal: GoalReduce,
trigger: TriggerReduce,