From 82c35be814a7d57f0845ed0db85ed6f25d4a1bfa Mon Sep 17 00:00:00 2001 From: Rama Priyanto Date: Fri, 27 Feb 2026 09:11:52 +0700 Subject: [PATCH] feat:timestamp for detail --- services/article.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/article.ts b/services/article.ts index 71ee1b1..3c6ec94 100644 --- a/services/article.ts +++ b/services/article.ts @@ -120,7 +120,7 @@ export async function updateArticle(id: string, data: any) { return await httpPut(pathUrl, headers, data); } -export async function getArticleById(id: any, timeStamp: any) { +export async function getArticleById(id: any, timeStamp?: any) { const headers = { "content-type": "application/json", };