File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
renderer/features/sessions/utils Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ export function registerPosthogIpc(): void {
3434 } ,
3535 ) ;
3636
37- // Fetch S3 logs - returns raw text to bypass CORS in renderer
3837 ipcMain . handle (
3938 "fetch-s3-logs" ,
4039 async (
Original file line number Diff line number Diff line change 1+ /// <reference path="../../../types/electron.d.ts" />
12import type { SessionNotification } from "@agentclientprotocol/sdk" ;
2- import "@renderer/types/electron" ;
33
44export interface StoredLogEntry {
55 type : string ;
@@ -32,7 +32,6 @@ export async function fetchSessionLogs(
3232 }
3333
3434 try {
35- // Use IPC to fetch from main process to bypass CORS
3635 const content = await window . electronAPI . fetchS3Logs ( logUrl ) ;
3736
3837 if ( ! content ?. trim ( ) ) {
You can’t perform that action at this time.
0 commit comments