Skip to content

Commit 45c1c97

Browse files
expand comments
1 parent 65eddcc commit 45c1c97

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

packages/dds/matrix/src/matrix.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,12 @@ export class SharedMatrix<T = any>
691691
// back-compat: used -1 for disabled
692692
artifactsToSummarize.push(
693693
-1,
694-
// undefined - we should set undefined in place of cellLastWriteTracker to ensure the number of array entries is consistent, but this currently breaks snapshot tests
694+
/*
695+
* we should set undefined in place of cellLastWriteTracker to ensure the number of array entries is consistent.
696+
* Doing that currently breaks snapshot tests. Its is probably fine, but if new elements are ever added, we need
697+
* ensure undefined is also set.
698+
*/
699+
// undefined
695700
);
696701
}
697702
builder.addBlob(

0 commit comments

Comments
 (0)