diff --git a/src/components/UserPublicProfile/PrivateProfileBanner.tsx b/src/components/UserPublicProfile/PrivateProfileBanner.tsx index 1bcf80aab..f47cdcc81 100644 --- a/src/components/UserPublicProfile/PrivateProfileBanner.tsx +++ b/src/components/UserPublicProfile/PrivateProfileBanner.tsx @@ -1,4 +1,5 @@ import type { GetPublicProfileResponse } from '../../api/user'; +import { Lock } from 'lucide-react'; type PrivateProfileBannerProps = Pick< GetPublicProfileResponse, @@ -10,7 +11,8 @@ export function PrivateProfileBanner(props: PrivateProfileBannerProps) { if (isOwnProfile && profileVisibility === 'private') { return ( -
+
+ Your profile is private. Only you can see this page.
);