Skip to content

Commit

Permalink
Fix delete table... (#1481)
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerjbainbridge authored and acywatson committed Apr 9, 2022
1 parent eb8c4a2 commit 3258a79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/lexical-table/src/LexicalTableSelectionHelpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export function applyTableHandlers(
window.addEventListener('mousedown', mouseDownCallback);

tableSelection.listenersToRemove.add(() =>
window.removeEventListener(mouseDownCallback),
window.removeEventListener('mousedown', mouseDownCallback),
);

tableSelection.listenersToRemove.add(
Expand Down

0 comments on commit 3258a79

Please sign in to comment.