Condition check modal title text edit

This commit is contained in:
jackiettran
2026-01-02 14:24:22 -05:00
parent 0104f369a9
commit bc01c818aa

View File

@@ -9,10 +9,10 @@ interface ConditionCheckViewerModalProps {
} }
const checkTypeLabels: Record<string, string> = { const checkTypeLabels: Record<string, string> = {
pre_rental_owner: "Pre-Rental Condition (Owner)", pre_rental_owner: "Pre-Rental Condition",
rental_start_renter: "Rental Start Condition (Renter)", rental_start_renter: "Rental Start Condition",
rental_end_renter: "Rental End Condition (Renter)", rental_end_renter: "Rental End Condition",
post_rental_owner: "Post-Rental Condition (Owner)", post_rental_owner: "Post-Rental Condition",
}; };
const ConditionCheckViewerModal: React.FC<ConditionCheckViewerModalProps> = ({ const ConditionCheckViewerModal: React.FC<ConditionCheckViewerModalProps> = ({
@@ -51,7 +51,7 @@ const ConditionCheckViewerModal: React.FC<ConditionCheckViewerModalProps> = ({
try { try {
await Promise.all( await Promise.all(
validKeys.map(async (key) => { validKeys.map(async (key) => {
const url = await getSignedImageUrl(key, 'medium'); const url = await getSignedImageUrl(key, "medium");
newUrls.set(key, url); newUrls.set(key, url);
}) })
); );