-
Notifications
You must be signed in to change notification settings - Fork 97
Decouple React and CodeMirror (v2) #9448
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
src/lang/KclManager.ts
Outdated
| this.setEditorView(viewUpdate.view) | ||
| } | ||
| const sceneEntitiesManager = this._sceneEntitiesManager | ||
| debugger |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A debugger statement is present in production code. This will cause the browser to pause execution when DevTools is open, breaking the application flow.
Fix: Remove this line:
// Remove the debugger statementSpotted by Graphite Agent
Is this helpful? React 👍 or 👎 to let us know.
fc95c59 to
c57b4c9
Compare
c57b4c9 to
d05a14c
Compare
8f9d8e3 to
bbef9de
Compare
bbef9de to
093c7cb
Compare
4d1a705 to
03e201f
Compare
Heavy rebase of #9190, testing out a competing approach to it. I believe this version has solved two major issues remaining in the other:
engineConnectionis started before allowing execution to occur. They were competing before, so theengineConnectionwould fire off an execution and it would say "I'm busy", then the zoom-to-fit would hit super early and not work right.