Skip to content

Commit

Permalink
fix(visual-editing): add silent catch to features request (#2038)
Browse files Browse the repository at this point in the history
  • Loading branch information
rdunk authored Oct 24, 2024
1 parent f7a11f3 commit a20b0fd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/visual-editing/src/ui/VisualEditing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ export const VisualEditing: FunctionComponent<VisualEditingOptions> = (props) =>
setActor(actor)
}
})
.catch(() => {
// Fail silently as the app may be communicating with a version of
// Presentation that does not support this feature
})

actor.start()
comlink.start()
Expand Down

0 comments on commit a20b0fd

Please sign in to comment.