diff --git a/example/src/App.tsx b/example/src/App.tsx index db75caa..ec378c2 100644 --- a/example/src/App.tsx +++ b/example/src/App.tsx @@ -2,7 +2,7 @@ import React from 'react' import styled from 'styled-components' import { - BrowserRouter as Router, + HashRouter as Router, Routes, Route, Link, @@ -30,20 +30,24 @@ const LinkStyled = styled(Link)<{ current?: boolean }>` ` const PATHS = { - multi: '/walletconnect/multi', - single: '/walletconnect/single' + multi: 'multi', + single: 'single' } const Navigation = () => { const location = useLocation() + console.log(location) return (