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

@@ -7,7 +7,7 @@ import AlertComponent from "../alert/alert.component";
import LoadingSkeleton from "../loading-skeleton/loading-skeleton.component";
import "./job-bills-total.styles.scss";
import BlurWrapperComponent from "../feature-wrapper/blur-wrapper.component";
import UpsellComponent, { upsellEnum } from "../upsell/upsell.component";
import UpsellComponent, { UpsellEnum } from "../upsell/upsell.component";
import { HasFeatureAccess } from "../feature-wrapper/feature-wrapper.component";
import { connect } from "react-redux";
import { createStructuredSelector } from "reselect";
@@ -336,7 +336,7 @@ export function JobBillsTotalComponent({
{!hasBillsAccess && (
<Col span={6}>
<Card style={{ height: "100%" }}>
<UpsellComponent upsell={upsellEnum().bills.autoreconcile} disableMask />
<UpsellComponent upsell={UpsellEnum().bills.autoreconcile} disableMask />
</Card>
</Col>
)}