We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f44d5b commit f133fb1Copy full SHA for f133fb1
1 file changed
src-tauri/src/lib.rs
@@ -25,7 +25,7 @@ pub fn run() {
25
Typescript::default().header("/* eslint-disable */"),
26
"../src/app/generated/tauri.ts",
27
)
28
- .expect("Failed to export tauri-specta bindings");
+ .unwrap_or_else(|e| eprintln!("Warning: Failed to export tauri-specta bindings: {e}"));
29
30
let invoke_handler = specta_builder.invoke_handler();
31
0 commit comments