Skip to content

Commit

Permalink
fix(articles): proper timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
regularentropy committed Aug 14, 2024
1 parent 9ecb839 commit e6a9892
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/[lang]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const getFirstTwoArticles = async (top: number = 2) => {
const article = articles[i] as ArticleResponse;
result.push({
title: article.title,
date: article.date,
date: article.date.replace('T', " "),
description: article.description,
author: article.author,
image: article.image,
Expand Down

0 comments on commit e6a9892

Please sign in to comment.