From bc01c818aa760841c7eb37c4eabbc00e872386cd Mon Sep 17 00:00:00 2001 From: jackiettran <41605212+jackiettran@users.noreply.github.com> Date: Fri, 2 Jan 2026 14:24:22 -0500 Subject: [PATCH] Condition check modal title text edit --- frontend/src/components/ConditionCheckViewerModal.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/src/components/ConditionCheckViewerModal.tsx b/frontend/src/components/ConditionCheckViewerModal.tsx index bfb25da..3b03098 100644 --- a/frontend/src/components/ConditionCheckViewerModal.tsx +++ b/frontend/src/components/ConditionCheckViewerModal.tsx @@ -9,10 +9,10 @@ interface ConditionCheckViewerModalProps { } const checkTypeLabels: Record = { - pre_rental_owner: "Pre-Rental Condition (Owner)", - rental_start_renter: "Rental Start Condition (Renter)", - rental_end_renter: "Rental End Condition (Renter)", - post_rental_owner: "Post-Rental Condition (Owner)", + pre_rental_owner: "Pre-Rental Condition", + rental_start_renter: "Rental Start Condition", + rental_end_renter: "Rental End Condition", + post_rental_owner: "Post-Rental Condition", }; const ConditionCheckViewerModal: React.FC = ({ @@ -51,7 +51,7 @@ const ConditionCheckViewerModal: React.FC = ({ try { await Promise.all( validKeys.map(async (key) => { - const url = await getSignedImageUrl(key, 'medium'); + const url = await getSignedImageUrl(key, "medium"); newUrls.set(key, url); }) );