chore: emotion dropdown doesnt automatically assign new value

This commit is contained in:
Björn Otgaar
2026-01-05 10:30:29 +01:00
parent bd2ffe622f
commit 8f1367ed83

View File

@@ -93,6 +93,10 @@ export default function BasicBeliefNode(props: NodeProps<BasicBeliefNode>) {
belief: {
...data.belief,
type: newType,
value:
newType === "emotion"
? emotionOptions[0]
: data.belief.value,
},
});
}