feat: FlowPilot migration — Phase 1-9 + Phase 9 bug fixes + QA fixture harness #147
@@ -8,7 +8,7 @@
|
|||||||
* Visual reference: docs/FlowAssist_Migration/mockups/07-verify-states.html
|
* Visual reference: docs/FlowAssist_Migration/mockups/07-verify-states.html
|
||||||
* (panel C).
|
* (panel C).
|
||||||
*/
|
*/
|
||||||
import { X, AlertCircle, Check } from 'lucide-react'
|
import { X, AlertCircle, Check, Info } from 'lucide-react'
|
||||||
import type { FixOutcome } from '@/api/sessionSuggestedFixes'
|
import type { FixOutcome } from '@/api/sessionSuggestedFixes'
|
||||||
|
|
||||||
export type InterceptChoice = FixOutcome | 'never_applied'
|
export type InterceptChoice = FixOutcome | 'never_applied'
|
||||||
@@ -53,6 +53,13 @@ export function EscalateInterceptDialog({
|
|||||||
<span className="flex-1">The fix didn't work</span>
|
<span className="flex-1">The fix didn't work</span>
|
||||||
<span className="text-[10.5px] text-muted-foreground font-mono px-1.5 py-[2px] rounded bg-white/[0.05]">↵</span>
|
<span className="text-[10.5px] text-muted-foreground font-mono px-1.5 py-[2px] rounded bg-white/[0.05]">↵</span>
|
||||||
</button>
|
</button>
|
||||||
|
<button
|
||||||
|
onClick={() => onChoose('applied_partial')}
|
||||||
|
className="flex items-center gap-2.5 px-3 py-2.5 rounded-lg border border-white/10 bg-elevated text-[12.5px] text-primary hover:bg-sidebar transition-colors text-left"
|
||||||
|
>
|
||||||
|
<Info size={13} strokeWidth={2} />
|
||||||
|
<span className="flex-1">I applied some of it — partial</span>
|
||||||
|
</button>
|
||||||
<button
|
<button
|
||||||
onClick={() => onChoose('applied_success')}
|
onClick={() => onChoose('applied_success')}
|
||||||
className="flex items-center gap-2.5 px-3 py-2.5 rounded-lg border border-white/10 bg-elevated text-[12.5px] text-primary hover:bg-sidebar transition-colors text-left"
|
className="flex items-center gap-2.5 px-3 py-2.5 rounded-lg border border-white/10 bg-elevated text-[12.5px] text-primary hover:bg-sidebar transition-colors text-left"
|
||||||
|
|||||||
Reference in New Issue
Block a user