summaryrefslogtreecommitdiffstats
path: root/ui/src
diff options
context:
space:
mode:
authorDessalines <happydooby@gmail.com>2019-07-14 19:43:31 -0700
committerDessalines <happydooby@gmail.com>2019-07-14 19:43:31 -0700
commitacd8f062375925d1b01c191a3db140f31efcfe5a (patch)
tree29519edede5c43e5c89a38cb87bf8ce0493eb6ff /ui/src
parent9bc9741e64f1dc2202ebced4eb8e14bc7a713d19 (diff)
Switching to BrowserRouter.
- Fixes #178. - #176
Diffstat (limited to 'ui/src')
-rw-r--r--ui/src/index.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/src/index.tsx b/ui/src/index.tsx
index 04160a9f..a50bf2a0 100644
--- a/ui/src/index.tsx
+++ b/ui/src/index.tsx
@@ -34,7 +34,7 @@ class Index extends Component<any, any> {
render() {
return (
- <HashRouter>
+ <BrowserRouter>
<Navbar />
<div class="mt-1 p-0">
<Switch>
@@ -64,7 +64,7 @@ class Index extends Component<any, any> {
<Symbols />
</div>
<Footer />
- </HashRouter>
+ </BrowserRouter>
);
}