From d5a891702c51e198e7e452dfe0f0d174d4022655 Mon Sep 17 00:00:00 2001 From: Conor Macpherson Date: Fri, 24 Mar 2023 16:37:45 -0400 Subject: [PATCH] add license_id param. --- .../src/components/self_hosted_expansion_modal/index.tsx | 1 + webapp/platform/types/src/hosted_customer.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/webapp/channels/src/components/self_hosted_expansion_modal/index.tsx b/webapp/channels/src/components/self_hosted_expansion_modal/index.tsx index 914d464877..06eda5dafb 100644 --- a/webapp/channels/src/components/self_hosted_expansion_modal/index.tsx +++ b/webapp/channels/src/components/self_hosted_expansion_modal/index.tsx @@ -228,6 +228,7 @@ export default function SelfHostedExpansionModal() { submitProgress, { seats: formState.seats, + license_id: license.ID, }, )); diff --git a/webapp/platform/types/src/hosted_customer.ts b/webapp/platform/types/src/hosted_customer.ts index bb6b7f856a..73878205af 100644 --- a/webapp/platform/types/src/hosted_customer.ts +++ b/webapp/platform/types/src/hosted_customer.ts @@ -78,4 +78,5 @@ export interface TrueUpReviewStatusReducer extends TrueUpReviewStatus { export interface SelfHostedExpansionRequest { seats: number; + license_id: string; }