Skip to content

Commit

Permalink
fixed(editor): clear providers after sending updates and fetch fresh …
Browse files Browse the repository at this point in the history
…data

Signed-off-by: Tim Deubler <[email protected]>
  • Loading branch information
TerminalTim committed Dec 10, 2024
1 parent 64469a7 commit 9c99c01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/editor/src/API/Editor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ const clearTiles = (internalEditor: InternalEditor) => {

for (let i = 0; i < clearBBoxes.length; i += 2) {
provider = clearBBoxes[i];
provider.clear.apply(provider, clearBBoxes[i + 1]);
provider.clear(clearBBoxes[i + 1]);
}
};

Expand Down

0 comments on commit 9c99c01

Please sign in to comment.