(&self, _cx: &App)
| 237 | cx.spawn_in(window, async move |_weak_this, cx| { |
| 238 | let channel_result = paths_receiver.await; |
| 239 | |
| 240 | let Ok(platform_result) = channel_result else { |
| 241 | log::error!("File picker channel closed unexpectedly"); |
| 242 | return; |
| 243 | }; |
| 244 |