Garth Williams
Garth Williams
I tried both. Since I didn't find a way to destroy, I created an object that subscribes on construction and then unsubscribes when destroyed. At first I though that I...
The keymap bindings suggested by @yuk0ga allow you to move to the tab to the right or tab to the left of the current tab. This is not what other...
I think I may have found the issue... I get CORS errors when running from a regular command prompt, but if when starting from a Visual Studio Command Prompt the...
I have exactly the same error. To run the ios app I have to make a static build first.
This is still a problem, but can be patched with `pnpm patch`. ```sh pnpm patch @microsoft/[email protected] ``` Edit the package.json in the folder crated by `pnpm patch` and add ```patch...
I've tested forcing all deps to use `v0.2.2` and it seems to fix the issue: ```json "pnpm": { "overrides": { "@reactivedata/reactive": "0.2.2" } }, ```
@YousefED the problem appears to be due to @syncedstore/core depending on `v0.2.0` of `@reactivedata/reactive` whilst `@reactivedata/react` depends on `v0.2.2`. So two version of the same library are included and conflict...
It's also worth noting that since we cannot currently use `subcluster.emit` the following will send messages to peers who should not receive it which could be a potential data leak/security...
> the peers listed on sub cluster should only be members of the sub cluster The list of peers includes peerIds from outside the cluster.
I just noticed that if I remove the `default_index = "index.html"` setting the app no longer crashes when calling `createWindow` but then I get a blank page in the new...