make trace disabled default and add link to report bugs and issues

This commit is contained in:
Eduard Gert
2026-06-11 16:21:20 +02:00
parent c6d5136953
commit a8462e3f9b
11 changed files with 35 additions and 14 deletions
@@ -101,7 +101,7 @@ const useDebugBundle = () => {
const [anonymize, setAnonymize] = useState(false);
const [systemInfo, setSystemInfo] = useState(true);
const [upload, setUpload] = useState(true);
const [trace, setTrace] = useState(true);
const [trace, setTrace] = useState(false);
const [traceMinutes, setTraceMinutes] = useState(1);
const [stage, setStage] = useState<DebugStage>({ kind: "idle" });
const [lastBundlePath, setLastBundlePath] = useState<string>("");