Evan Almloff

Results 533 comments of Evan Almloff

> I tried adding various prints around the code, but when the component that will handle the scraping is called, none of the prints do anything `println!` will not work...

> I tried bumping to the latest version of futures-channel, 0.31.0, ran all the tests described in the contribution guide, and everything builds successfully and passes. I can make a...

> `HashMap` It might make sense to just store `HashMap` instead of a nested hashmap since the `BundledAsset` struct already contains the bundled path and it looks like the hashmap...

This was fixed in https://github.com/DioxusLabs/dioxus/pull/3988

Can you share the code you ran into this issue with? I was not able to reproduce this issue with a blank project and the dependency `manganis = "0.2.2"`

#3693 should fix the CLI issue that was causing two server builds to be bundled instead of a server and desktop build. > I'm not sure how to write my...

After you bundle the app with the CLI from https://github.com/DioxusLabs/dioxus/pull/3693, you need to run both the server bundle and the desktop app seperately. The CLI should print the location of...

> So I will have to wait for a new release then? Will I still be able to simply say `dx run` or `dx serve`? > > I noticed there...

> Does this mean we can just remove > > [dioxus/packages/interpreter/src/ts/native.ts](https://github.com/DioxusLabs/dioxus/blob/6bdb69e23529e0fd9813f535b7e4d957cc1d9b28/packages/interpreter/src/ts/native.ts#L337-L342) > > Lines 337 to 342 in [6bdb69e](/DioxusLabs/dioxus/commit/6bdb69e23529e0fd9813f535b7e4d957cc1d9b28) > > // If the target is a form prevent the...

> the submit handler does not get called in the first place? That is a bug. The intended behavior on desktop when submitting forms is the `onsubmit` event handler gets...