diff --git a/src/containers/CourseCard/components/CourseCardImage.jsx b/src/containers/CourseCard/components/CourseCardImage.jsx index 3be032e..cc458f0 100644 --- a/src/containers/CourseCard/components/CourseCardImage.jsx +++ b/src/containers/CourseCard/components/CourseCardImage.jsx @@ -20,6 +20,7 @@ export const CourseCardImage = ({ cardId, orientation }) => { const { isVerified } = appHooks.useCardEnrollmentData(cardId); const { isEntitlement } = appHooks.useCardEntitlementData(cardId); const handleImageClicked = appHooks.useTrackCourseEvent(courseImageClicked, cardId, homeUrl); + const wrapperClassName = `pgn__card-wrapper-image-cap overflow-visible ${orientation}`; const image = ( <> { ); return isEntitlement - ? image + ? (
{image}
) : (