mirror of
https://github.com/Lissy93/web-check.git
synced 2025-01-10 08:19:28 +01:00
Merge pull request #3 from UlisesGascon/fix/remove-slash
fix: remove slash character at the end if exists
This commit is contained in:
commit
e25e4d643c
@ -55,7 +55,7 @@ const Home = (): JSX.Element => {
|
|||||||
|
|
||||||
/* Check is valid address, either show err or redirect to results page */
|
/* Check is valid address, either show err or redirect to results page */
|
||||||
const submit = () => {
|
const submit = () => {
|
||||||
let address = userInput;
|
let address = userInput.endsWith("/") ? userInput.slice(0, -1) : userInput;
|
||||||
const addressType = determineAddressType(address);
|
const addressType = determineAddressType(address);
|
||||||
|
|
||||||
if (addressType === 'empt') {
|
if (addressType === 'empt') {
|
||||||
|
Loading…
Reference in New Issue
Block a user