allow query preview when query editor is closed

This commit is contained in:
jeffvli
2025-12-27 15:57:43 -08:00
parent b9a0d9b847
commit 331cddcabb
2 changed files with 4 additions and 7 deletions
@@ -9,7 +9,7 @@ interface JsonPreviewProps {
export const JsonPreview = ({ value }: JsonPreviewProps) => {
return (
<Code block className={styles.preview} lang="json" p="md">
{JSON.stringify(value, null, 4)}
{JSON.stringify(value, null, 2)}
</Code>
);
};