summaryrefslogtreecommitdiffstats
path: root/examples/pokedex/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/pokedex/src/main.rs')
-rw-r--r--examples/pokedex/src/main.rs7
1 files changed, 1 insertions, 6 deletions
diff --git a/examples/pokedex/src/main.rs b/examples/pokedex/src/main.rs
index 13e420a9..b0cb3c55 100644
--- a/examples/pokedex/src/main.rs
+++ b/examples/pokedex/src/main.rs
@@ -27,12 +27,7 @@ enum Message {
}
impl Application for Pokedex {
- #[cfg(not(target_arch = "wasm32"))]
- type Executor = iced_futures::executor::Tokio;
-
- #[cfg(target_arch = "wasm32")]
- type Executor = iced_futures::executor::WasmBindgen;
-
+ type Executor = iced::executor::Default;
type Message = Message;
fn new() -> (Pokedex, Command<Message>) {