thought card uses answers or thoughts (#1440)

This commit is contained in:
Shuchang Zheng
2024-12-27 00:34:06 -08:00
committed by GitHub
parent caf25a4317
commit 603eab5890

View File

@@ -28,7 +28,9 @@ function ThoughtCard({ thought, onClick, active }: Props) {
<span className="text-xs">Decision</span>
</div>
</div>
<div className="text-xs text-slate-400">{thought.answer}</div>
<div className="text-xs text-slate-400">
{thought.answer || thought.thought}
</div>
</div>
);
}