diff --git a/src/components/auth/AuthButtons.tsx b/src/components/auth/AuthButtons.tsx index 1e99568f..85f72fc9 100644 --- a/src/components/auth/AuthButtons.tsx +++ b/src/components/auth/AuthButtons.tsx @@ -83,6 +83,17 @@ export function AuthButtons() { ); } + // Debug logging for avatar rendering + console.log('[AuthButtons] Component render:', { + hasUser: !!user, + hasProfile: !!profile, + hasAvatarUrl: !!profile?.avatar_url, + avatarUrl: profile?.avatar_url, + displayName: profile?.display_name, + username: profile?.username, + loading + }); + return