Fix invalid extra outputs depending on solve for selection

This commit is contained in:
Daniel Dunn
2025-04-08 22:07:54 -06:00
parent ef26fed3b3
commit 80baf64ad1

View File

@@ -518,7 +518,6 @@ export default async function makeTool(
let expr = nerdamer(extraOutput.formula);
Object.keys(values.vars).forEach((key) => {
if (key === values.outputVariable) return;
expr = expr.sub(key, values.vars[key].value.toString());
});