Skip to content

Commit

Permalink
feat(3636): track reasons for choosing cloud provider
Browse files Browse the repository at this point in the history
  • Loading branch information
golebu2020 committed Sep 27, 2024
1 parent 7bac5ac commit 5b380a1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
15 changes: 9 additions & 6 deletions app/components/billing/PublicCloudBillingInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion app/components/billing/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ export type Product = Omit<
};
};
}>,
'updatedAt'
'updatedAt' | 'providerSelectionReasons' | 'providerSelectionReasonsNote'
>;

0 comments on commit 5b380a1

Please sign in to comment.