diff --git a/CHANGELOG.md b/CHANGELOG.md index 81e681c7..5a72b1b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -318,7 +318,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), * [#774](https://github.com/shlinkio/shlink-web-client/issues/774) Dropped support for Shlink older than 2.8.0. ### Fixed -* [#715](https://github.com/shlinkio/shlink-web-client/issues/715) Fixed connection still failing on miss-configured servers, after editing their params to set proper values. +* [#715](https://github.com/shlinkio/shlink-web-client/issues/715) Fixed connection still failing on misconfigured servers, after editing their params to set proper values. ## [3.8.2] - 2022-12-17 diff --git a/src/servers/helpers/ServerError.tsx b/src/servers/helpers/ServerError.tsx index 748f3e67..b7504285 100644 --- a/src/servers/helpers/ServerError.tsx +++ b/src/servers/helpers/ServerError.tsx @@ -45,7 +45,7 @@ const ServerError: FCWithDeps = ({ servers, s {isServerWithId(selectedServer) && (

- Alternatively, if you think you may have miss-configured this server, you + Alternatively, if you think you may have misconfigured this server, you can remove it or  edit it.

diff --git a/test/servers/helpers/ServerError.test.tsx b/test/servers/helpers/ServerError.test.tsx index 9a07cafc..ec6d42fb 100644 --- a/test/servers/helpers/ServerError.test.tsx +++ b/test/servers/helpers/ServerError.test.tsx @@ -26,7 +26,7 @@ describe('', () => { notFound: [ 'Oops! Could not connect to this Shlink server.', 'Make sure you have internet connection, and the server is properly configured and on-line.', - /^Alternatively, if you think you may have miss-configured this server/, + /^Alternatively, if you think you may have misconfigured this server/, ], }, ], @@ -36,7 +36,7 @@ describe('', () => { found: [ 'Oops! Could not connect to this Shlink server.', 'Make sure you have internet connection, and the server is properly configured and on-line.', - /^Alternatively, if you think you may have miss-configured this server/, + /^Alternatively, if you think you may have misconfigured this server/, ], notFound: ['Could not find this Shlink server.'], },