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); }) );