Skip to content

Commit

Permalink
Add logging to Header component for debugging server-client HTML mism…
Browse files Browse the repository at this point in the history
…atch
  • Loading branch information
devin-ai-integration[bot] committed Jun 26, 2024
1 parent 6057c27 commit f67d351
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions apps/web/src/shared/components/header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ const Header = () => {
const { user } = session || {};
const { email } = user || {};

console.log('Rendering Header');
console.log('Session:', session);
console.log('Network:', network);

const handleLogout = async () => {
await signOut({ callbackUrl: REDIRECT_AFTER_LOGOUT_URL });
};
Expand Down

0 comments on commit f67d351

Please sign in to comment.