elias098
elias098
If this is intended it should probably be documented. this might also just be me being used to leptos and not understanding dioxus version properly.
the code causing this should be that `this.promiseResolve = resolve;` overwrites the promise in [eval.js](https://github.com/DioxusLabs/dioxus/blob/96b9baafffc17dc962a9e62ae5e8d410ae45de13/packages/web/src/eval.js#L10C1-L22C4) ```js recv() { return new Promise((resolve, _reject) => { // If data already exists, resolve...
as far as i understand it the offending code is the infinite loop in the timeout here in [query.rs](https://github.com/DioxusLabs/dioxus/blob/96b9baafffc17dc962a9e62ae5e8d410ae45de13/packages/desktop/src/query.rs#L17C5-L33C7) ```js recv: function () { return new Promise((resolve, _reject) => {...
not directly related but it should probably be cleaned up when dropping `UseEval` as well