From 557f1e5dbd7b778c69fa89ca96fb3230b8852338 Mon Sep 17 00:00:00 2001 From: Patrick Alvin Alcala Date: Thu, 26 Feb 2026 19:01:19 +0800 Subject: [PATCH] Updated assessor --- src/pages/AssessorPage/Assessor.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/AssessorPage/Assessor.tsx b/src/pages/AssessorPage/Assessor.tsx index 3ad095d..9c47f6f 100644 --- a/src/pages/AssessorPage/Assessor.tsx +++ b/src/pages/AssessorPage/Assessor.tsx @@ -450,12 +450,12 @@ export default () => { const postTransaction = async (application: string) => { const id = await geteSignId(employeeId()) const today = await getDateTime() - const formatedDate = dayjs(today).format('YYYY-MM-DD HH:mm:ss') + const formattedDate = dayjs(today).format('YYYY-MM-DD HH:mm:ss') await postApi('post-esigntransaction', { data: parseInt(id, 10), data2: application, - data3: formatedDate, + data3: formattedDate, }) }