IO-3067 Add learn more link for Rome.

This commit is contained in:
Patrick Fic
2024-12-20 09:01:51 -08:00
parent c0bf829dc0
commit c4f7c57c24
37 changed files with 349 additions and 243 deletions

View File

@@ -18,7 +18,7 @@ import { HasFeatureAccess } from "../feature-wrapper/feature-wrapper.component";
import { connect } from "react-redux";
import { createStructuredSelector } from "reselect";
import { selectBodyshop } from "../../redux/user/user.selectors";
import UpsellComponent, { upsellEnum } from "../upsell/upsell.component";
import UpsellComponent, { UpsellEnum } from "../upsell/upsell.component";
const mapStateToProps = createStructuredSelector({
bodyshop: selectBodyshop
});
@@ -133,7 +133,7 @@ function JobsDocumentsComponent({
{!hasMediaAccess && (
<Col span={24}>
<Card>
<UpsellComponent disableMask upsell={upsellEnum().media.general} />
<UpsellComponent disableMask upsell={UpsellEnum().media.general} />
</Card>
</Col>
)}
@@ -152,7 +152,7 @@ function JobsDocumentsComponent({
{hasMediaAccess && !hasMobileAccess && (
<Col span={24}>
<Card>
<UpsellComponent upsell={upsellEnum().media.mobile} />
<UpsellComponent upsell={UpsellEnum().media.mobile} />
</Card>
</Col>
)}