import React from 'react'; import { JSONTree } from 'UI'; import { checkForRecent } from 'App/date'; interface Props { audit: any; } function AuditDetailModal(props: Props) { const { audit } = props; // const jsonResponse = typeof audit.payload === 'string' ? JSON.parse(audit.payload) : audit.payload; // console.log('jsonResponse', jsonResponse) return (