Skip to content

Commit 229c023

Browse files
authored
fix: error typo COMPASS-9242 (#6848)
error typo
1 parent 66aa8cc commit 229c023

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/compass-connections/src/stores/connections-store-redux.spec.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ describe('CompassConnections store', function () {
374374
expect(titleNode).to.be.visible;
375375

376376
const descriptionNode = screen.getByText(
377-
'Reason: Insufficient permissions. To use continue to use this connection either disconnect and reconnect, or refresh your page.'
377+
'Reason: Insufficient permissions. To continue to use this connection either disconnect and reconnect, or refresh your page.'
378378
);
379379
expect(descriptionNode).to.be.visible;
380380
});

packages/compass-connections/src/stores/connections-store-redux.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1415,7 +1415,7 @@ const openConnectionClosedWithNonRetryableErrorToast = (
14151415
title: `Unable to connect to ${getConnectionTitle(connectionInfo)}`,
14161416
description: `Reason: ${getDescriptionForNonRetryableError(
14171417
error
1418-
)}. To use continue to use this connection either disconnect and reconnect, or refresh your page.`,
1418+
)}. To continue to use this connection either disconnect and reconnect, or refresh your page.`,
14191419
variant: 'warning',
14201420
});
14211421
};

0 commit comments

Comments
 (0)