From 3b20fcec684819635543fca77585093786b23dee Mon Sep 17 00:00:00 2001 From: victorAnumudu Date: Wed, 15 Oct 2025 17:53:37 +0100 Subject: [PATCH] last four characters displayed --- src/component/home/RecentActions.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/component/home/RecentActions.jsx b/src/component/home/RecentActions.jsx index ef7c4c7..f4e78ef 100644 --- a/src/component/home/RecentActions.jsx +++ b/src/component/home/RecentActions.jsx @@ -94,7 +94,7 @@ export default function RecentActions() { let text = action?.status == '5' ? 'completed' : action?.status == '3' ? 'verifying' : action?.status == '0' ? 'processing' : 'processing' return ( - {action?.id} + {(action?.id).toString().slice(-4)} {action?.action_label} {new Date(action?.added).toDateString()}