Condition check modal title text edit
This commit is contained in:
@@ -9,10 +9,10 @@ interface ConditionCheckViewerModalProps {
|
||||
}
|
||||
|
||||
const checkTypeLabels: Record<string, string> = {
|
||||
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<ConditionCheckViewerModalProps> = ({
|
||||
@@ -51,7 +51,7 @@ const ConditionCheckViewerModal: React.FC<ConditionCheckViewerModalProps> = ({
|
||||
try {
|
||||
await Promise.all(
|
||||
validKeys.map(async (key) => {
|
||||
const url = await getSignedImageUrl(key, 'medium');
|
||||
const url = await getSignedImageUrl(key, "medium");
|
||||
newUrls.set(key, url);
|
||||
})
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user