This commit is contained in:
legop3
2025-11-17 04:39:27 -05:00
parent ce5cd909e1
commit 922f0b1188
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ export default function SessionSnapshot() {
return (
<div className="rounded-sm bg-[#242a32] p-1 text-xs text-slate-100">
<p className="text-sm text-slate-400">Session snapshot</p>
<pre className="mt-1 max-h-64 overflow-y-auto bg-black/40 p-1 text-[0.7rem] text-lime-300">{payload}</pre>
<pre className="mt-1 h-64 overflow-y-auto bg-black/40 p-1 text-[0.7rem] text-lime-300">{payload}</pre>
</div>
);
}