From 1bbdab216c5f117371365f40ff0679e9093be2fc Mon Sep 17 00:00:00 2001 From: Andrii Blacksmith Date: Sat, 29 Jun 2024 23:29:04 +0300 Subject: [PATCH] fix(history): use update time --- components/history-item.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/history-item.tsx b/components/history-item.tsx index 77683c1f..e8d776bb 100644 --- a/components/history-item.tsx +++ b/components/history-item.tsx @@ -58,7 +58,7 @@ const HistoryItem: FC = (props) => { data.content && `${CONTENT_TYPE_LINKS[data.content.data_type]}/${data.content.slug}` } - createdAt={data.created} + createdAt={data.updated} image={ data.content?.data_type === 'anime' ? data.content?.image