From 03b242884a86fa74293a8635e010e33be1d2f159 Mon Sep 17 00:00:00 2001 From: Hoang Long <90229051+hlong24082k@users.noreply.github.com> Date: Fri, 7 Nov 2025 07:44:25 +0700 Subject: [PATCH] fix: change time now to correct created and updated time (#1703) ## Summary by cubic Fix incorrect "Created" and "Last Updated" timestamps in App Details. The page now uses selectedApp.createdAt and selectedApp.updatedAt instead of the current time. Written for commit 4b2459b23b4c3e6592c45076276d50070d8df749. Summary will update automatically on new commits. Co-authored-by: hlong24082k --- src/pages/app-details.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/app-details.tsx b/src/pages/app-details.tsx index d2b3d8e..b6a3238 100644 --- a/src/pages/app-details.tsx +++ b/src/pages/app-details.tsx @@ -299,13 +299,13 @@ export default function AppDetailsPage() { Created - {new Date().toLocaleString()} + {selectedApp.createdAt.toString()}
Last Updated - {new Date().toLocaleString()} + {selectedApp.updatedAt.toString()}