diff --git a/app/components/billing/PublicCloudBillingInfo.tsx b/app/components/billing/PublicCloudBillingInfo.tsx index 048a89617..5575fb326 100644 --- a/app/components/billing/PublicCloudBillingInfo.tsx +++ b/app/components/billing/PublicCloudBillingInfo.tsx @@ -15,12 +15,15 @@ export default function PublicCloudBillingInfo({ product, className, }: { - product: Product & { - _permissions?: { - signMou: boolean; - reviewMou: boolean; - }; - }; + product: Omit< + Product & { + _permissions?: { + signMou: boolean; + reviewMou: boolean; + }; + }, + 'providerSelectionReasons' | 'providerSelectionReasonsNote' + >; className?: string; }) { const { data: session } = useSession(); diff --git a/app/components/billing/types.ts b/app/components/billing/types.ts index e49155f70..8051a5f26 100644 --- a/app/components/billing/types.ts +++ b/app/components/billing/types.ts @@ -12,5 +12,5 @@ export type Product = Omit< }; }; }>, - 'updatedAt' + 'updatedAt' | 'providerSelectionReasons' | 'providerSelectionReasonsNote' >;