Condition check modal title text edit
This commit is contained in:
@@ -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);
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user