Skip to content

Commit 3b1085b

Browse files
committed
cli: Use second-person pronouns in ask-user UI
1 parent 0519cff commit 3b1085b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/src/components/blocks/ask-user-branch.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ export const AskUserBranch = ({ block, availableWidth }: AskUserBranchProps) =>
3030
>
3131
{block.skipped ? (
3232
<text style={{ fg: theme.muted, attributes: TextAttributes.ITALIC }}>
33-
User skipped the questions.
33+
You skipped the questions.
3434
</text>
3535
) : (
3636
<box style={{ flexDirection: 'column', gap: 1 }}>
3737
<text style={{ fg: theme.secondary, attributes: TextAttributes.BOLD }}>
38-
User Answers:
38+
Your answers:
3939
</text>
4040
{block.questions.map((q, idx) => {
4141
const answer = block.answers?.find((a) => a.questionIndex === idx)

0 commit comments

Comments
 (0)