An ATproto social media client -- with an independent Appview.

dedupe date parsing (#6267)

authored by samuel.fm and committed by

GitHub dd8d14e1 df3f7128

+4 -2
+4 -2
src/view/com/util/PostMeta.tsx
··· 49 49 precacheProfile(queryClient, opts.author) 50 50 }, [queryClient, opts.author]) 51 51 52 + const timestampLabel = niceDate(i18n, opts.timestamp) 53 + 52 54 return ( 53 55 <View 54 56 style={[ ··· 115 117 {({timeElapsed}) => ( 116 118 <WebOnlyInlineLinkText 117 119 to={opts.postHref} 118 - label={niceDate(i18n, opts.timestamp)} 119 - title={niceDate(i18n, opts.timestamp)} 120 + label={timestampLabel} 121 + title={timestampLabel} 120 122 disableMismatchWarning 121 123 disableUnderline 122 124 onPress={onBeforePressPost}