From af9d858bb38ab2468a3a0f6ecc4188648e1bfe95 Mon Sep 17 00:00:00 2001 From: Test Date: Wed, 25 Mar 2026 16:43:58 +0100 Subject: [PATCH] fix: set default mock telemetry_consent to false to unblock Playwright The mock settings used telemetry_consent: null which caused the consent dialog to appear in every Playwright test, blocking the app shell. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/mock-tauri/mock-handlers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mock-tauri/mock-handlers.ts b/src/mock-tauri/mock-handlers.ts index e0c034c0..111dd11e 100644 --- a/src/mock-tauri/mock-handlers.ts +++ b/src/mock-tauri/mock-handlers.ts @@ -81,7 +81,7 @@ let mockSettings: Settings = { github_token: null, github_username: null, auto_pull_interval_minutes: 5, - telemetry_consent: null, + telemetry_consent: false, crash_reporting_enabled: null, analytics_enabled: null, anonymous_id: null,