We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8f195f commit 77cbfe4Copy full SHA for 77cbfe4
1 file changed
packages/cli/src/ui/components/ApprovalModeIndicator.tsx
@@ -24,25 +24,22 @@ export const ApprovalModeIndicator: React.FC<ApprovalModeIndicatorProps> = ({
24
case ApprovalMode.AUTO_EDIT:
25
textColor = theme.status.warning;
26
textContent = 'Auto';
27
- subText = ' shift+tab';
28
break;
29
case ApprovalMode.PLAN:
30
textColor = theme.status.success;
31
textContent = 'Plan';
32
33
34
case ApprovalMode.YOLO:
35
textColor = theme.status.error;
36
textContent = 'YOLO';
37
38
39
case ApprovalMode.DEFAULT:
40
default:
41
textColor = theme.text.accent;
42
textContent = 'Build';
43
44
45
}
+ subText = ' shift+tab';
46
47
return (
48
<Box>
0 commit comments