Skip to content

Commit 88b0414

Browse files
committed
minor string updates
1 parent 62c7a62 commit 88b0414

File tree

1 file changed

+3
-3
lines changed
  • packages/core/src/amazonq/webview/ui/diffTree

1 file changed

+3
-3
lines changed

packages/core/src/amazonq/webview/ui/diffTree/actions.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ export function getDetails(filePaths: DiffTreeFileInfo[]): Record<string, TreeNo
1313
if (filePath.changeApplied) {
1414
details[filePath.relativePath] = {
1515
status: 'success',
16-
label: 'File accepted',
16+
label: 'Change accepted',
1717
icon: MynahIcons.OK,
1818
}
1919
} else if (filePath.rejected) {
2020
details[filePath.relativePath] = {
2121
status: 'error',
22-
label: 'File rejected',
22+
label: 'Change rejected',
2323
icon: MynahIcons.CANCEL_CIRCLE,
2424
}
2525
}
@@ -49,7 +49,7 @@ export function getActions(filePaths: DiffTreeFileInfo[]): Record<string, FileNo
4949
icon: MynahIcons.OK,
5050
status: 'success',
5151
name: 'accept-change',
52-
description: 'Accept file change',
52+
description: 'Accept change',
5353
},
5454
{
5555
icon: MynahIcons.CANCEL_CIRCLE,

0 commit comments

Comments
 (0)