aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGalen Guyer <galen@galenguyer.com>2022-12-20 10:41:30 -0500
committerGalen Guyer <galen@galenguyer.com>2022-12-20 10:41:30 -0500
commit2cadfd86adc30d70538e1d71964fe647c934ee8a (patch)
tree452607668d324843f694cfa17ef80dac8ade1bb2
parent547dc7a883144c520083c38adbbd6be9f642a670 (diff)
DN navigating home is unintuitive
-rw-r--r--src/App.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/App.js b/src/App.js
index 0838d06..eebf176 100644
--- a/src/App.js
+++ b/src/App.js
@@ -46,7 +46,7 @@ function ButtonRow() {
{auth.isAuthenticated() ? (
<>
{/* TODO: This should go to a profile page once one exists */}
- <DnBox onClick={() => navigate('/zones')}>{auth.getDn()}</DnBox>
+ <DnBox>{auth.getDn()}</DnBox>
<Button
className="LoginButton"
primary