Format XML responses

This commit is contained in:
Gregory Schier
2024-02-22 01:00:02 -08:00
parent ca4d9b1ad6
commit 321b013ce6
5 changed files with 40 additions and 6 deletions

View File

@@ -174,8 +174,6 @@ export const ResponsePane = memo(function ResponsePane({ style, className, activ
) : contentType?.match(/csv|tab-separated/) ? (
<CsvViewer className="pb-2" response={activeResponse} />
) : (
// ) : contentType?.startsWith('application/json') ? (
// <JsonViewer response={activeResponse} />
<TextViewer response={activeResponse} pretty={viewMode === 'pretty'} />
)}
</TabContent>