Skip to content

Commit

Permalink
fix(billing): fix js errors (#15376)
Browse files Browse the repository at this point in the history
ref: MANAGER-17023

Signed-off-by: Maxime Bajeux <[email protected]>
  • Loading branch information
MaximeBajeux authored Feb 20, 2025
1 parent b52f83a commit c40b116
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default /* @ngInject */ (
controllerAs: 'ctrl',
resolve: {
agreementId: /* @ngInject */ ($transition$) => $transition$.params().id,
breadcrumb: /* @ngInject */ (agreementId) => agreementId,
breadcrumb: /* @ngInject */ (agreementId) => agreementId.toString(),
},
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ export default /* @ngInject */ ($stateProvider, coreConfigProvider) => {
ovhFeatureFlipping
.checkFeatureAvailability(['billing:choiceRenewDayTooltip'])
.then((commitmentAvailability) =>
commitmentAvailability.isFeatureAvailable(
commitmentAvailability?.isFeatureAvailable(
'billing:choiceRenewDayTooltip',
),
),
Expand Down

0 comments on commit c40b116

Please sign in to comment.