fix: remove slash character at the end if exists

This commit is contained in:
Ulises Gascón 2023-07-17 17:26:08 +02:00 committed by GitHub
parent 77b8feb435
commit a3d7463df6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,7 +55,7 @@ const Home = (): JSX.Element => {
/* Check is valid address, either show err or redirect to results page */
const submit = () => {
let address = userInput;
let address = userInput.endsWith("/") ? userInput.slice(0, -1) : userInput;
const addressType = determineAddressType(address);
if (addressType === 'empt') {