Revert "Feature/IO-3067 implement learn more link for rome upsells (pull request #2034)"

This commit is contained in:
Patrick Fic
2025-01-02 16:02:14 +00:00
parent c033c0fbc5
commit 23becf6494
38 changed files with 244 additions and 350 deletions

View File

@@ -16,7 +16,7 @@ import { HasRbacAccess } from "../rbac-wrapper/rbac-wrapper.component";
import TimeTicketEnterButton from "../time-ticket-enter-button/time-ticket-enter-button.component";
import { HasFeatureAccess } from "../feature-wrapper/feature-wrapper.component";
import LockWrapperComponent from "../lock-wrapper/lock-wrapper.component";
import UpsellComponent, { UpsellEnum } from "../upsell/upsell.component";
import UpsellComponent, { upsellEnum } from "../upsell/upsell.component";
const mapStateToProps = createStructuredSelector({
bodyshop: selectBodyshop,
@@ -364,7 +364,7 @@ export function TimeTicketList({
...(!hasTimeTicketsAccess && {
emptyText: (
<Card>
<UpsellComponent upsell={UpsellEnum().timetickets.general} />
<UpsellComponent upsell={upsellEnum().timetickets.general} />
</Card>
)
})