From 8637c90a214f2d316826ce146ad605dc20395676 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Thu, 5 Feb 2026 07:57:03 -0800 Subject: [PATCH] Fix CSV responses ignoring raw view mode --- src-web/components/HttpResponsePane.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-web/components/HttpResponsePane.tsx b/src-web/components/HttpResponsePane.tsx index 5f00d389..de22aaf1 100644 --- a/src-web/components/HttpResponsePane.tsx +++ b/src-web/components/HttpResponsePane.tsx @@ -239,7 +239,7 @@ export function HttpResponsePane({ style, className, activeRequestId }: Props) { ) : mimeType?.match(/pdf/i) ? ( - ) : mimeType?.match(/csv|tab-separated/i) ? ( + ) : mimeType?.match(/csv|tab-separated/i) && viewMode === 'pretty' ? ( ) : (