feat: add tooltip to Debug Mode toggle explaining its purpose

This commit is contained in:
jlightner 2026-03-31 02:23:12 +00:00
parent 4e5b41c46f
commit 3c4c2f9439

View file

@ -393,7 +393,7 @@ function DebugModeToggle({
if (debugMode === null) return null;
return (
<div className="debug-toggle">
<div className="debug-toggle" title="When enabled, pipeline runs capture full LLM prompts and responses for inspection in the event log">
<span className="debug-toggle__label">
Debug {debugMode ? "On" : "Off"}
</span>