refactor(json-viewer): remove console.log

This commit is contained in:
tekh 2025-07-15 14:37:48 +02:00
parent cfadae4df3
commit 8a43e88f24

View File

@ -1,11 +1,8 @@
import React from 'react';
type JsonViewerProps = {
data: any;
};
export function JsonViewer({ data }: JsonViewerProps) {
console.log (JSON.stringify(data));
return (
<pre style={{
backgroundColor: '#f4f4f4',