Skip to content

Commit

Permalink
frontend: temporally disable tokens page
Browse files Browse the repository at this point in the history
  • Loading branch information
ffreddow committed Jan 14, 2025
1 parent 356ea60 commit c6c7f33
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ export function CustomNavbar() {
{t("chargers")}
</p>
</Nav.Link>
<Nav.Link className="d-flex align-items-center" onClick={() => setExpanded(false)} href="/tokens" active={url === "/tokens"}>
{/* <Nav.Link className="d-flex align-items-center" onClick={() => setExpanded(false)} href="/tokens" active={url === "/tokens"}>
<Key/>
<p class="ms-1 mb-0">
Token
</p>
</Nav.Link>
</Nav.Link> */}
<Nav.Link className="d-flex align-items-center" onClick={() => setExpanded(false)} href="/user" active={url === "/user"}>
<User/>
<p class="ms-1 mb-0">
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export function App() {
<Col>
<LocationProvider>
<Router>
<Route path="/tokens" component={Tokens} />
{/* <Route path="/tokens" component={Tokens} /> */}
<Route path="/user" component={User} />
<Route default path="/chargers" component={ChargerList} />
</Router>
Expand Down

0 comments on commit c6c7f33

Please sign in to comment.