diff --git a/src/components/Me.tsx b/src/components/Me.tsx index 7e12c774..d0683d88 100644 --- a/src/components/Me.tsx +++ b/src/components/Me.tsx @@ -23,6 +23,7 @@ import { getCachedMeData, setCachedMeData, updateCachedHighlights } from '../ser import { faBooks } from '../icons/customIcons' import { usePullToRefresh } from '../hooks/usePullToRefresh' import PullToRefreshIndicator from './PullToRefreshIndicator' +import { getProfileUrl } from '../config/nostrGateways' interface MeProps { relayPool: RelayPool @@ -311,7 +312,24 @@ const Me: React.FC = ({ relayPool, activeTab: propActiveTab, pubkey: pr case 'writings': return writings.length === 0 ? (
-

No articles written yet. Publish your first article to see it here!

+

+ {isOwnProfile + ? 'No articles written yet. Publish your first article to see it here!' + : ( + <> + No articles written. You can find other stuff from this user using{' '} + + ants + + . + + )} +

) : (