Skip to content

Commit

Permalink
fix sentry crash
Browse files Browse the repository at this point in the history
  • Loading branch information
ra3orblade committed Apr 26, 2024
1 parent 284f16d commit 3fb07c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ts/component/block/table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -345,11 +345,11 @@ const BlockTable = observer(class BlockTable extends React.Component<I.BlockComp
};
},
onOver: (e: any, item: any) => {
if (menuStore.isAnimating(menuContext.props.id)) {
if (!menuContext) {
return;
};

if (!menuContext) {
if (menuStore.isAnimating(menuContext.props.id)) {
return;
};

Expand Down

0 comments on commit 3fb07c5

Please sign in to comment.