Skip to content

Commit a36bc20

Browse files
committed
Fix the confirmation message
1 parent c9d8aad commit a36bc20

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

frontend/src/components/Connect/Details/Actions/Actions.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const Actions: React.FC = () => {
3838
const deleteConnectorHandler = () =>
3939
confirm(
4040
<>
41-
Are you sure you want to remove <b>{routerProps.connectorName}</b>{' '}
41+
Are you sure you want to remove the <b>{routerProps.connectorName}</b>{' '}
4242
connector?
4343
</>,
4444
async () => {
@@ -69,7 +69,7 @@ const Actions: React.FC = () => {
6969
const resetConnectorOffsetsHandler = () =>
7070
confirm(
7171
<>
72-
Are you sure you want to reset <b>{routerProps.connectorName}</b>{' '}
72+
Are you sure you want to reset the <b>{routerProps.connectorName}</b>{' '}
7373
connector offsets?
7474
</>,
7575
() => resetConnectorOffsetsMutation.mutateAsync()

frontend/src/components/Connect/List/ActionsCell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const ActionsCell: React.FC<CellContext<FullConnectorInfo, unknown>> = ({
4545
const handleDelete = () => {
4646
confirm(
4747
<>
48-
Are you sure you want to remove <b>{name}</b> connector?
48+
Are you sure you want to remove the <b>{name}</b> connector?
4949
</>,
5050
async () => {
5151
await deleteMutation.mutateAsync();

0 commit comments

Comments
 (0)