diff --git a/js/components/debugger/FileViewer.tsx b/js/components/debugger/FileViewer.tsx index 3318b59..bafd99b 100644 --- a/js/components/debugger/FileViewer.tsx +++ b/js/components/debugger/FileViewer.tsx @@ -18,7 +18,7 @@ export interface FileViewerProps { const HiresPreview = ({ binary }: { binary: Uint8Array }) => { const canvasRef = useRef(null); - if (binary.byteLength < 8187 || binary.byteLength > 8192) { + if (binary.byteLength < 8187 || binary.byteLength > 8197) { return null; }