diff --git a/src/components/NewskieDialog.tsx b/src/components/NewskieDialog.tsx index aa51ba7684..76b1af40bb 100644 --- a/src/components/NewskieDialog.tsx +++ b/src/components/NewskieDialog.tsx @@ -7,7 +7,6 @@ import {differenceInSeconds} from 'date-fns' import {useGetTimeAgo} from '#/lib/hooks/useTimeAgo' import {HITSLOP_10} from 'lib/constants' -import {isNative} from 'platform/detection' import {atoms as a} from '#/alf' import {Button} from '#/components/Button' import * as Dialog from '#/components/Dialog' @@ -32,36 +31,45 @@ export function NewskieDialog({ ) }, [profile.createdAt]) - if (!profile.createdAt) return null if (daysOld > 7) return null return ( - <> + - - + + Say hello! - {profileName} recently joined Bluesky{' '} + {profileName} joined Bluesky{' '} {timeAgo(profile.createdAt as string, {format: 'long'})} ago - + ) }