Call Quality Survey Integration

This commit is contained in:
yash-signal
2025-12-10 14:05:46 -06:00
committed by GitHub
parent 4b2f6af4ad
commit 1338eadf6f
29 changed files with 840 additions and 54 deletions

View File

@@ -21,11 +21,15 @@ function uploadLogs(logs: string) {
return ipcRenderer.invoke('DebugLogs.upload', logs);
}
const urlParams = new URLSearchParams(window.location.search);
const mode = urlParams.get('mode') === 'close' ? 'close' : 'submit';
const Signal = {
DebugLogWindowProps: {
downloadLog,
fetchLogs,
uploadLogs,
mode,
},
};
contextBridge.exposeInMainWorld('Signal', Signal);