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 4151e7cd25
commit 1ac3db77a1

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>