From d464261d56ad5a33f47b31f16aa71808792ffdf4 Mon Sep 17 00:00:00 2001 From: Dylan Date: Mon, 15 Aug 2022 23:41:18 -0500 Subject: [PATCH] Fix type in equation node return --- src/nodes/EquationNode.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nodes/EquationNode.tsx b/src/nodes/EquationNode.tsx index 0795d55..f47b58e 100644 --- a/src/nodes/EquationNode.tsx +++ b/src/nodes/EquationNode.tsx @@ -154,7 +154,7 @@ export class EquationNode extends DecoratorNode { return { equation: this.getEquation(), inline: this.__inline, - type: 'emoji', + type: 'equation', version: 1, }; }