/** Debug session 943716 — remove after layout/chart investigation */ export const DEBUG_BUILD_STAMP = 'layout-charts-v1' export function debugAgentLog( location: string, message: string, data: Record, hypothesisId: string, ) { // #region agent log fetch('http://127.0.0.1:7580/ingest/5c1b60ca-3f59-41ce-8435-d25bcc12c3cf', { method: 'POST', headers: { 'Content-Type': 'application/json', 'X-Debug-Session-Id': '943716', }, body: JSON.stringify({ sessionId: '943716', location, message, data, hypothesisId, timestamp: Date.now(), runId: 'pre-fix', }), }).catch(() => {}) // #endregion }