Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ describe('CompassConnections store', function () {
expect(titleNode).to.be.visible;

const descriptionNode = screen.getByText(
'Reason: Insufficient permissions. To use continue to use this connection either disconnect and reconnect, or refresh your page.'
'Reason: Insufficient permissions. To continue to use this connection either disconnect and reconnect, or refresh your page.'
);
expect(descriptionNode).to.be.visible;
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1415,7 +1415,7 @@ const openConnectionClosedWithNonRetryableErrorToast = (
title: `Unable to connect to ${getConnectionTitle(connectionInfo)}`,
description: `Reason: ${getDescriptionForNonRetryableError(
error
)}. To use continue to use this connection either disconnect and reconnect, or refresh your page.`,
)}. To continue to use this connection either disconnect and reconnect, or refresh your page.`,
variant: 'warning',
});
};
Expand Down
Loading