You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a temporal workaround, I added self.global = {} to avoid this problem in Cody Web, but eventually, I think a fix should be done here, maybe instead of global.openctx we could share vscode API through singleton
The text was updated successfully, but these errors were encountered:
In some consumers (like Cody Web) it should be possible to run/create openctx controller within
web worker, at the moment since init logic here https://github.com/sourcegraph/openctx/blob/main/client/vscode-lib/src/global.ts uses
global.
statement it breaks initialisation for Cody Web.As a temporal workaround, I added
self.global = {}
to avoid this problem in Cody Web, but eventually, I think a fix should be done here, maybe instead of global.openctx we could share vscode API through singletonThe text was updated successfully, but these errors were encountered: