openNote(e)} className="flex flex-col px-3">
{data ? (
<>
diff --git a/src/app/note/components/user/default.tsx b/src/app/note/components/user/default.tsx
index 3a6b840b..fea5523d 100644
--- a/src/app/note/components/user/default.tsx
+++ b/src/app/note/components/user/default.tsx
@@ -13,7 +13,7 @@ export const NoteDefaultUser = ({ pubkey, time }: { pubkey: string; time: number
return (
-
+
{user?.nip05 || shortenKey(pubkey)}
•
- {dayjs().to(dayjs.unix(time))}
+ {dayjs().to(dayjs.unix(time), true)}
diff --git a/src/app/note/components/user/reply.tsx b/src/app/note/components/user/reply.tsx
index 340bcc68..99c196f4 100644
--- a/src/app/note/components/user/reply.tsx
+++ b/src/app/note/components/user/reply.tsx
@@ -13,7 +13,7 @@ export default function NoteReplyUser({ pubkey, time }: { pubkey: string; time:
return (
-
+
·
- {dayjs().to(dayjs.unix(time))}
+ {dayjs().to(dayjs.unix(time), true)}
diff --git a/src/app/note/components/user/repost.tsx b/src/app/note/components/user/repost.tsx
index 40aa9950..ff1d1888 100644
--- a/src/app/note/components/user/repost.tsx
+++ b/src/app/note/components/user/repost.tsx
@@ -13,7 +13,7 @@ export const NoteRepostUser = ({ pubkey, time }: { pubkey: string; time: number
return (
-
+
·
- {dayjs().to(dayjs.unix(time))}
+ {dayjs().to(dayjs.unix(time), true)}
);