fix(tauri): remove stray perf emission from auth cookie PR

Drop the startup instrumentation call that leaked into the auth-cookie isolation branch. The helper is not defined on this PR branch, and the PR does not need to serialize the generated cookie name to fix the multi-instance auth collision.
This commit is contained in:
Pascal André
2026-03-15 01:10:05 +01:00
parent 034cb5dea9
commit 800133361d

View File

@@ -432,11 +432,6 @@ impl CliProcessManager {
resolution.runner, resolution.entry, host
));
let auth_cookie_name = Arc::new(generate_auth_cookie_name());
emit_perf_startup(
&app,
"cli.auth.cookie.generated",
json!({ "cookieName": auth_cookie_name }),
);
let args = resolution.build_args(dev, &host, auth_cookie_name.as_str());
log_line(&format!("CLI args: {:?}", args));
if dev {