You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/dds/matrix/src/matrix.ts
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -691,7 +691,12 @@ export class SharedMatrix<T = any>
691
691
// back-compat: used -1 for disabled
692
692
artifactsToSummarize.push(
693
693
-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
0 commit comments