feat: navigate to author's writings page from article author card

This commit is contained in:
Gigi
2025-11-01 10:22:15 +01:00
parent 5bdc435f5d
commit aec2dcb75c

View File

@@ -27,7 +27,7 @@ const AuthorCard: React.FC<AuthorCardProps> = ({ authorPubkey, clickable = true
const handleClick = () => { const handleClick = () => {
if (clickable) { if (clickable) {
const npub = nip19.npubEncode(authorPubkey) const npub = nip19.npubEncode(authorPubkey)
navigate(`/p/${npub}`) navigate(`/p/${npub}/writings`)
} }
} }