Password reset working

This commit is contained in:
2025-03-15 21:27:15 -04:00
parent 49243a71a1
commit d42f625540
6 changed files with 169 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
import { useAuth } from "@/providers/AuthProvider";
import { isSiteAdmin } from "@/util/PermissionUtil";
import { BsFillPersonFill } from "react-icons/bs";
import { NavLink } from "react-router";
@@ -46,6 +47,16 @@ export default function ProtectedNavLinks(){
</NavLink>
))
}
{
jwt &&
<NavLink
to="/account"
>
<BsFillPersonFill
size={22}
/>
</NavLink>
}
</>
);
}