Skip to content

Commit

Permalink
feat: add avatar and sign out option
Browse files Browse the repository at this point in the history
  • Loading branch information
steveoh authored and stdavis committed Nov 29, 2024
1 parent 39d63e0 commit b353fe2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export default function App() {
placeGraphic(graphics);
};

const { currentUser } = useFirebaseAuth();
const { currentUser, logout } = useFirebaseAuth();
const kyOptions = {
hooks: {
beforeRequest: [
Expand Down Expand Up @@ -178,7 +178,7 @@ export default function App() {
return (
<>
<main className="flex h-screen flex-col md:gap-2">
<Header links={links}>
<Header links={links} currentUser={currentUser} logout={logout}>
<DnrLogo />
<div className="flex h-full grow items-center gap-3">
<h2 className="font-heading text-3xl font-black text-zinc-600 sm:text-5xl dark:text-zinc-100">
Expand Down

0 comments on commit b353fe2

Please sign in to comment.