Skip to content

Commit 3e81c6c

Browse files
Fix error in ProseMirror example (#5768)
1 parent 7cc3992 commit 3e81c6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/data-objects/prosemirror/src/footnoteView.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export class FootnoteView {
8888

8989
for (const transaction of transactions) {
9090
for (const step of transaction.steps) {
91-
outerTr.step(step).map(offsetMap);
91+
outerTr.step(step.map(offsetMap));
9292
}
9393
}
9494

0 commit comments

Comments
 (0)