fix the typo

This commit is contained in:
Alexander Kuznetsov 2025-06-02 12:59:19 +02:00 committed by GitHub
parent 1587216fd7
commit ee4cfec2ad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -119,7 +119,7 @@ export class NodeView<
}
if (typeof this.options.stopEvent === 'function') {
const shouldStopEvent = return this.options.stopEvent({ event })
const shouldStopEvent = this.options.stopEvent({ event })
if (shouldStopEvent !== null) {
return shouldStopEvent;
}