Use less sessionStorage for editor state

This commit is contained in:
Gregory Schier
2025-01-20 14:56:25 -08:00
parent 2a2fe700b4
commit c58bfeb109
4 changed files with 35 additions and 11 deletions

View File

@@ -23,7 +23,6 @@ export function HTMLOrTextViewer({ response, pretty, textViewerClassName }: Prop
return null;
}
console.log("HELLO", rawTextBody.data, response);
// Wasn't able to decode as text, so it must be binary
if (rawTextBody.data == null) {
return <BinaryViewer response={response} />;