Skip to content

Commit

Permalink
Merge pull request #49 from rosset-nocpes/fix/history-use-update-time
Browse files Browse the repository at this point in the history
fix(history): use update time
  • Loading branch information
olexh authored Jun 30, 2024
2 parents 41c92a1 + 1bbdab2 commit 4cde02c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/history-item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const HistoryItem: FC<Props> = (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
Expand Down

0 comments on commit 4cde02c

Please sign in to comment.