mirror of
https://github.com/anyproto/anytype-ts.git
synced 2025-06-08 05:57:02 +09:00
fix sentry crash
This commit is contained in:
parent
94b152ecf3
commit
4c0ef18783
2 changed files with 5 additions and 3 deletions
|
@ -8,5 +8,5 @@ npx lint-staged --concurrent false
|
|||
gitleaks protect --verbose --redact --staged
|
||||
|
||||
# Checking dependencies' licenses
|
||||
npx license-checker --production --json --out licenses.json
|
||||
node check-licenses.js
|
||||
#npx license-checker --production --json --out licenses.json
|
||||
#node check-licenses.js
|
|
@ -165,7 +165,9 @@ const ControlButtons = observer(class ControlButtons extends React.Component<Pro
|
|||
break;
|
||||
|
||||
case 'position':
|
||||
onEdit(e);
|
||||
if (onEdit) {
|
||||
onEdit(e);
|
||||
};
|
||||
break;
|
||||
|
||||
case 'remove':
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue