Skip to content

Commit

Permalink
Update navbar.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
DCRepublic authored Oct 31, 2024
1 parent 3660d6e commit 9767948
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const Navbar = (props: any) => {
} else {
if (status === "authenticated") {
authenticated = true;
loginLink = <div onClick={() => signOut()}>Log out</div>;
loginLink = <div role="button" onClick={() => signOut()}>Log out</div>;
// @ts-ignore
if (session.user?.role === "admin") {
adminDashLink = (
Expand Down

0 comments on commit 9767948

Please sign in to comment.