lavoce #35

Merged
bragaz_rexita merged 5 commits from lavoce into main 2026-01-08 04:52:16 +00:00
Showing only changes of commit 5281e288a9 - Show all commits

View File

@@ -288,14 +288,16 @@ const ListNotification = memo(function ListNotification(props) {
name: user.contact_name,
phone: user.contact_phone,
status: user.is_send ? 'Delivered' : 'Pending',
timestamp: user.created_at
? new Date(user.created_at).toLocaleString('id-ID', {
timestamp: user.updated_at
? new Date(user.updated_at)
.toLocaleString('id-ID', {
day: '2-digit',
month: '2-digit',
year: 'numeric',
hour: '2-digit',
minute: '2-digit',
}) + ' WIB'
})
.replace('.', ':') + ' WIB'
: 'N/A',
}));
setUserHistoryData(transformedUsers);