This commit is contained in:
Jake Kasper
2025-09-04 09:01:54 -05:00
parent 6d20918bb7
commit c9729130fe
2 changed files with 45 additions and 22 deletions

View File

@@ -140,8 +140,8 @@ const Dashboard = () => {
const appLogs = (appLogsRes.data?.data?.logs || []).map(l => ({
id: `app-${l.id}`,
type: 'application',
title: `${l.productNames?.length ? 'Applied ' + l.productNames.join(', ') : 'Application'} on ${l.section_names || 'section'}`,
property: l.property_name,
title: `Application on ${l.sectionName || 'section'}`,
property: l.propertyName,
date: l.applicationDate || l.createdAt,
status: 'completed'
}));