demos for spacedust

link /early from badge and fix notifs

+3 -1
+1 -1
atproto-notifications/src/components/Notification.tsx
··· 33 33 34 34 directLink = lex 35 35 ?.clients[0] 36 - ?.direct_links[`did:${sourceRemainder}`] 36 + ?.direct_links?.[`did:${sourceRemainder}`] 37 37 ?.replace('{subject.did}', subject) 38 38 ?.replace('{source_record.did}', sDid) 39 39 ?.replace('{source_record.collection}', sCollection)
+2
atproto-notifications/src/components/setup/Chrome.tsx
··· 22 22 <span className="chrome-role-tag"> 23 23 {user.role === 'admin' ? ( 24 24 <Link to="/admin" className="inherit-font">{user.role}</Link> 25 + ) : user.role === 'early' ? ( 26 + <Link to="/early" className="inherit-font">{user.role}</Link> 25 27 ) : ( 26 28 <>{user.role}</> 27 29 )}