import React from 'react'; const RoastCard = ({ explanation }) => { const cleanText = explanation ? explanation.replace(/^["']|["']$/g, '') : ''; return (
Behavioral Pattern Detected

{cleanText || "Awaiting input stream..."}

); }; export default RoastCard;