Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Show date in verifications dialog (#8257)

authored by

Eric Bailey and committed by
GitHub
4aaf81fe b3c3ee55

+15 -5
+15 -5
src/components/verification/VerificationsDialog.tsx
··· 178 178 outerDialogControl: Dialog.DialogControlProps 179 179 }) { 180 180 const t = useTheme() 181 - const {_} = useLingui() 181 + const {_, i18n} = useLingui() 182 182 const {currentAccount} = useSession() 183 183 const moderationOpts = useModerationOpts() 184 184 const {data: profile, error} = useProfileQuery({did: verification.issuer}) ··· 222 222 moderationOpts={moderationOpts} 223 223 disabledPreview 224 224 /> 225 - <ProfileCard.NameAndHandle 226 - profile={profile} 227 - moderationOpts={moderationOpts} 228 - /> 225 + <View style={[a.flex_1]}> 226 + <ProfileCard.Name 227 + profile={profile} 228 + moderationOpts={moderationOpts} 229 + /> 230 + <Text 231 + emoji 232 + style={[a.leading_snug, t.atoms.text_contrast_medium]} 233 + numberOfLines={1}> 234 + {i18n.date(new Date(verification.createdAt), { 235 + dateStyle: 'long', 236 + })} 237 + </Text> 238 + </View> 229 239 </ProfileCard.Link> 230 240 {canAdminister && ( 231 241 <View>