Skip to content

Commit

Permalink
Fix build errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
fdemian committed May 14, 2024
1 parent 85f0489 commit 4421f1f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Kalliope/Plugins/TableCellResizer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,14 @@ function TableCellResizer({editor}: {editor: LexicalEditor}): JSX.Element {
}, 0);
};

// @ts-expect-error
const onMouseDown = (event: MouseEvent) => {
setTimeout(() => {
updateIsMouseDown(true);
}, 0);
};

// @ts-expect-error
const onMouseUp = (event: MouseEvent) => {
setTimeout(() => {
updateIsMouseDown(false);
Expand Down

0 comments on commit 4421f1f

Please sign in to comment.