Skip to content

Commit

Permalink
hotfix for images in customer case
Browse files Browse the repository at this point in the history
  • Loading branch information
anemne committed Oct 22, 2024
1 parent 48e438b commit 62c4502
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/customerCases/customerCase/CustomerCase.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export default function CustomerCase({ customerCase }: CustomerCaseProps) {
<RichText value={section.richText} />
) : (
<div className={styles.imageBlockWrapper}>
{section.images.map((image) => (
{section.images?.map((image) => (
<div
key={image._key}
className={styles.imageBlockImageWrapper}
Expand Down

0 comments on commit 62c4502

Please sign in to comment.