From b52c151a6f41764392edff19c80b7f2631da07ca Mon Sep 17 00:00:00 2001 From: ilkin-overleaf <100852799+ilkin-overleaf@users.noreply.github.com> Date: Wed, 22 Feb 2023 15:18:36 +0200 Subject: [PATCH] Merge pull request #11937 from overleaf/ii-subscription-dash-coupons-ci-fixes [web] Subscription dash fix CI issues GitOrigin-RevId: 53e7a6ede9d0f07be1e0d1f1c6180bd1a5cecf84 --- .../subscription/components/shared/price-exceptions.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/web/frontend/js/features/subscription/components/shared/price-exceptions.tsx b/services/web/frontend/js/features/subscription/components/shared/price-exceptions.tsx index b98e757f23..44a67fbb1c 100644 --- a/services/web/frontend/js/features/subscription/components/shared/price-exceptions.tsx +++ b/services/web/frontend/js/features/subscription/components/shared/price-exceptions.tsx @@ -1,8 +1,8 @@ import { useTranslation } from 'react-i18next' -import { Subscription } from '../../../../../../types/subscription/dashboard/subscription' +import { RecurlySubscription } from '../../../../../../types/subscription/dashboard/subscription' type PriceExceptionsProps = { - subscription: Subscription + subscription: RecurlySubscription } export function PriceExceptions({ subscription }: PriceExceptionsProps) {