We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb6d472 commit 3a33dabCopy full SHA for 3a33dab
apps/desktop/src-tauri/src/main.rs
@@ -243,12 +243,12 @@ async fn main() -> tauri::Result<()> {
243
handle.emit("deeplink", deep_link_event).unwrap();
244
});
245
246
- #[cfg(debug_assertions)] // only include this code on debug builds
247
- {
248
- let window = app.get_webview_window("main").unwrap();
249
- window.open_devtools();
250
- window.close_devtools();
251
- }
+ // #[cfg(debug_assertions)] // only include this code on debug builds
+ // {
+ // let window = app.get_webview_window("main").unwrap();
+ // window.open_devtools();
+ // window.close_devtools();
+ // }
252
253
block_in_place(|| {
254
block_on(async move {
0 commit comments