1
0
Fork 0
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:
Andrew Simachev 2023-12-28 19:54:14 +01:00
parent 94b152ecf3
commit 4c0ef18783
No known key found for this signature in database
GPG key ID: 49A163D0D14E6FD8
2 changed files with 5 additions and 3 deletions

View file

@ -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

View file

@ -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':