Skip to content

Commit

Permalink
Add a sign up icon
Browse files Browse the repository at this point in the history
Resolves #77 Resolves #80
  • Loading branch information
thebeanogamer committed Aug 12, 2022
1 parent 51745ef commit 35605f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/SiteNav.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import React from "react";
import { useSelector } from "react-redux";
import { useTranslation } from "react-i18next";
import { FiBarChart2, FiHome, FiLogIn, FiLogOut, FiPlus, FiSettings, FiUser, FiUsers, FiClock } from "react-icons/fi";
import { FiBarChart2, FiHome, FiLogIn, FiLogOut, FiPlus, FiSettings, FiUser, FiUsers, FiClock, FiUserPlus } from "react-icons/fi";

import {
SideNav, NavBar, NavBrand, NavGap, Footer, FootRow, FootCol,
Expand Down Expand Up @@ -179,7 +179,7 @@ const SideBarNav_ = ({ children }) => {
</SideNav.Item>
</Link>}
{registration && <Link to={"/register"}>
<SideNav.Item active={pathname === "/register"}>
<SideNav.Item active={pathname === "/register"} Icon={FiUserPlus}>
{t("register")}
</SideNav.Item>
</Link>}
Expand Down

0 comments on commit 35605f0

Please sign in to comment.