From 6b3408206d3b32aad16a2fcc5c8a650268ea7672 Mon Sep 17 00:00:00 2001 From: Ram-blip Date: Mon, 24 Nov 2025 23:00:00 -0800 Subject: [PATCH] fix(frontend): show usage record modal data and include email field --- src/components/BMDashboard/ItemList/RecordsModal.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/BMDashboard/ItemList/RecordsModal.jsx b/src/components/BMDashboard/ItemList/RecordsModal.jsx index c1eaa30247..c2bd8062a6 100644 --- a/src/components/BMDashboard/ItemList/RecordsModal.jsx +++ b/src/components/BMDashboard/ItemList/RecordsModal.jsx @@ -90,7 +90,7 @@ export function Record({ record, recordType, setRecord }) { } }; - if (recordType === 'Update') { + if (recordType === 'Update' || recordType === 'UsageRecord') { return ( <> @@ -123,8 +123,8 @@ export function Record({ record, recordType, setRecord }) { }) ) : ( - - There are no updates for this item. + + There are no usage records for this item. )}