Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit 95dcd5c

Browse files
committed
fixed formulas
1 parent 992ef1d commit 95dcd5c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/components/cellTypes/FormulaCell.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ const FormulaCell = (mdProps: CellComponentProps) => {
2121
const automationInfo = tableState.automations((state) => state.info);
2222

2323
useEffect(() => {
24+
console.log("FormulaCell useEffect");
2425
Promise.resolve().then(async () => {
2526
// If formula cell is empty, do nothing
2627
if (formulaRef.current === null) return;
@@ -33,9 +34,6 @@ const FormulaCell = (mdProps: CellComponentProps) => {
3334
})
3435
.toString();
3536

36-
// If the formula cell is the same as the rendered formula, do nothing
37-
if (cell.getValue() === formulaResponse) return;
38-
3937
await MarkdownService.renderMarkdown(
4038
defaultCell,
4139
formulaResponse,

0 commit comments

Comments
 (0)