fix the dang integration tests
All checks were successful
Deploy to Test Environment / deploy-to-test (push) Successful in 32m36s

This commit is contained in:
2026-01-06 13:53:00 -08:00
parent e675c1a73c
commit 59f6f43d03
9 changed files with 53 additions and 15 deletions

View File

@@ -95,6 +95,7 @@ export const apiFetch = async (
const fullUrl = url.startsWith('http') ? url : joinUrl(API_BASE_URL, url);
logger.debug(`apiFetch: ${options.method || 'GET'} ${fullUrl}`);
console.error(`[apiClient] apiFetch Request: ${options.method || 'GET'} ${fullUrl}`);
// Create a new headers object to avoid mutating the original options.
const headers = new Headers(options.headers || {});