From 964ba05724e3072a62dca1541f0c21c962caf1a5 Mon Sep 17 00:00:00 2001 From: john Date: Sun, 10 Aug 2025 18:45:54 +0200 Subject: [PATCH] fix stupid AI bullshit fuckery --- src/app/feed/components/PostTimeline.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/feed/components/PostTimeline.tsx b/src/app/feed/components/PostTimeline.tsx index 9fe6ddc..450d5e9 100644 --- a/src/app/feed/components/PostTimeline.tsx +++ b/src/app/feed/components/PostTimeline.tsx @@ -1,5 +1,4 @@ import { PostReaction } from '../posts/posts.ts' -import { Temporal } from '@js-temporal/polyfill' interface PostTimelineProps { reactions: PostReaction[] @@ -11,7 +10,7 @@ export function PostTimeline({ reactions }: PostTimelineProps) { {reactions.map((reaction) => (
- {Temporal.Now.instant().toLocaleString('en-AU', { + {reaction.reactedOn.toLocaleString('en-AU', { year: 'numeric', month: 'numeric', day: 'numeric',