Add as_csv=true to fetch URL to get CSV format
Some checks are pending
CI / Engine — lint / typecheck / test (push) Waiting to run
CI / API — lint / typecheck / test (push) Waiting to run
CI / Web — typecheck / lint / build (push) Waiting to run

This commit is contained in:
Manohar Gupta 2026-05-24 00:03:04 +05:30
parent d2c2e2fe63
commit 0f8a50caf2

View file

@ -93,7 +93,7 @@ export function ProfileViewer() {
console.log("fetchAndDisplayFile called:", path, name);
setIsLoadingFile(true);
try {
const url = `${API_BASE}${path}`;
const url = `${API_BASE}${path}?as_csv=true`;
console.log("Fetching:", url);
const res = await fetch(url);
console.log("Response status:", res.status);