Revert "feat: replace next-auth with quick auth"

This reverts commit 86029b2bd9.
This commit is contained in:
Shreyaschorge
2025-07-16 17:32:21 +05:30
parent c786cabe84
commit 89f82253ca
14 changed files with 792 additions and 418 deletions

View File

@@ -16,8 +16,8 @@ export function ProfileButton({
useDetectClickOutside(ref, () => setShowDropdown(false));
const name = userData?.username && userData.username.trim() !== '' ? userData.username : `!${userData?.fid}`;
const pfpUrl = userData?.pfpUrl && userData.pfpUrl.trim() !== '' ? userData.pfpUrl : 'https://farcaster.xyz/avatar.png';
const name = userData?.username ?? `!${userData?.fid}`;
const pfpUrl = userData?.pfpUrl ?? 'https://farcaster.xyz/avatar.png';
return (
<div className="relative" ref={ref}>