Skip to content

Commit

Permalink
fix: removed additional conditional chaining
Browse files Browse the repository at this point in the history
  • Loading branch information
sabrina-bongiovanni committed Nov 28, 2024
1 parent 38abd77 commit fbb2b6c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ const PaginaArgomentoView = ({ content }) => {
</CardText>
</CardBody>
{uo_object &&
(uo_object?.image_scales?.image?.length > 0 ||
uo_object?.image_scales?.preview_image?.length >
(uo_object.image_scales?.image?.length > 0 ||
uo_object.image_scales?.preview_image?.length >
0) && (
<div className="image-container me-3">
<Image
Expand Down

0 comments on commit fbb2b6c

Please sign in to comment.