Revert "IO-3067 Add learn more link for Rome."

This reverts commit c4f7c57c24.
This commit is contained in:
Patrick Fic
2025-01-06 15:58:56 -08:00
parent c4f7c57c24
commit d69050f006
37 changed files with 243 additions and 349 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>
)}