a tool for shared writing and social publishing
0

Configure Feed

Select the types of activity you want to include in your feed.

update nav for email only users

Jared Pereira (Apr 27, 2026, 5:56 PM EDT) 641dfc3f 2dc82233

+11 -5
+5 -3
components/ActionBar/DesktopNavigation.tsx
··· 32 32 {identity ? ( 33 33 <> 34 34 <ProfileButton /> 35 - <NotificationButton 36 - current={props.currentPage === "notifications"} 37 - /> 35 + {identity.atp_did && ( 36 + <NotificationButton 37 + current={props.currentPage === "notifications"} 38 + /> 39 + )} 38 40 </> 39 41 ) : ( 40 42 <LoginModal
+1 -1
components/ActionBar/MobileNavigation.tsx
··· 54 54 </div> 55 55 {identity ? ( 56 56 <div className="flex gap-2"> 57 - <NotificationButton /> 57 + {identity.atp_did && <NotificationButton />} 58 58 <ProfileButton /> 59 59 </div> 60 60 ) : (
+5 -1
components/ActionBar/ProfileButton.tsx
··· 44 44 <AccountSmall /> 45 45 ) 46 46 } 47 - label={record ? record.displayName || record.handle : "Account"} 47 + label={ 48 + record 49 + ? record.displayName || record.handle 50 + : identity?.email || "Account" 51 + } 48 52 className={`w-full`} 49 53 /> 50 54 }