This commit is contained in:
Philipp Heckel 2022-10-09 08:50:28 -04:00
parent cb8b3e54f6
commit 1b82beea6e
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ const SubscribePage = (props) => {
})();
const updateBaseUrl = (ev, newVal) => {
if (validUrl(newVal)) {
props.setBaseUrl(newVal.replace(/\/$/, '')); // strip traililng / after https?://
props.setBaseUrl(newVal.replace(/\/$/, '')); // strip trailing slash after https?://
} else {
props.setBaseUrl(newVal);
}