diff --git a/src/components/Literals/RemoteLiteralMapViewer.tsx b/src/components/Literals/RemoteLiteralMapViewer.tsx index 2759024d8a..5f330fec6e 100644 --- a/src/components/Literals/RemoteLiteralMapViewer.tsx +++ b/src/components/Literals/RemoteLiteralMapViewer.tsx @@ -30,6 +30,11 @@ export const RemoteLiteralMapViewer: React.FC<{ blob: UrlBlob; map: LiteralMap | null; }> = ({ blob, map }) => { + /** Note: if full_outputs has a value, we want to use that first */ + if (map != null) { + return ; + } + if (!blob.url || !blob.bytes) { return (

@@ -38,10 +43,6 @@ export const RemoteLiteralMapViewer: React.FC<{ ); } - if (map != null) { - return ; - } - return blob.bytes.gt(maxBlobDownloadSizeBytes) ? ( ) : (