diff --git a/src/components/views/Board.jsx b/src/components/views/Board.jsx index 9150ca91..62aa4625 100755 --- a/src/components/views/Board.jsx +++ b/src/components/views/Board.jsx @@ -507,7 +507,6 @@ const Board = () => { updateSigner(); } }, [updateSigner, anonymousMode]); - useEffect(() => { @@ -1246,7 +1245,7 @@ const Board = () => { ) : null} - Welcome to {subplebbit.title || subplebbit.address} + Welcome to {subplebbit.title || subplebbit.address}!   { (event) => { if (event.key === "Enter") { event.preventDefault(); - const address = inputRef.current.value.toLowerCase();; + const address = inputRef.current.value; if (address) { setSelectedAddress(address); navigate(`/p/${address}`) @@ -94,7 +94,7 @@ const Home = () => { }} /> { - const address = inputRef.current.value.toLowerCase();; + const address = inputRef.current.value; if (address) { setSelectedAddress(address); navigate(`/p/${address}`)