mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
Revert "chore: adapt billing page to custom billing scenarios"
This reverts commit 13fbcec5b3
.
This commit is contained in:
parent
13fbcec5b3
commit
ff164a0667
@ -46,40 +46,26 @@ export const BillingInformation = () => {
|
||||
|
||||
const plan = `${instanceStatus.plan}${isPAYG ? ' Pay-as-You-Go' : ''}`;
|
||||
const inactive = instanceStatus.state !== InstanceState.ACTIVE;
|
||||
const { isCustomBilling } = instanceStatus;
|
||||
|
||||
return (
|
||||
<Grid item xs={12} md={5}>
|
||||
<StyledInfoBox>
|
||||
<StyledTitle variant='body1'>Billing information</StyledTitle>
|
||||
<ConditionallyRender
|
||||
condition={Boolean(isCustomBilling)}
|
||||
condition={inactive}
|
||||
show={
|
||||
<StyledInfoLabel>
|
||||
Your billing is managed by Unleash
|
||||
</StyledInfoLabel>
|
||||
}
|
||||
elseShow={
|
||||
<>
|
||||
<ConditionallyRender
|
||||
condition={inactive}
|
||||
show={
|
||||
<StyledAlert severity='warning'>
|
||||
In order to{' '}
|
||||
<strong>Upgrade trial</strong> you need
|
||||
to provide us your billing information.
|
||||
</StyledAlert>
|
||||
}
|
||||
/>
|
||||
<BillingInformationButton update={!inactive} />
|
||||
<StyledInfoLabel>
|
||||
{inactive
|
||||
? 'Once we have received your billing information we will upgrade your trial within 1 business day'
|
||||
: 'Update your credit card and business information and change which email address we send invoices to'}
|
||||
</StyledInfoLabel>
|
||||
</>
|
||||
<StyledAlert severity='warning'>
|
||||
In order to <strong>Upgrade trial</strong> you need
|
||||
to provide us your billing information.
|
||||
</StyledAlert>
|
||||
}
|
||||
/>
|
||||
<BillingInformationButton update={!inactive} />
|
||||
<StyledInfoLabel>
|
||||
{inactive
|
||||
? 'Once we have received your billing information we will upgrade your trial within 1 business day'
|
||||
: 'Update your credit card and business information and change which email address we send invoices to'}
|
||||
</StyledInfoLabel>
|
||||
<StyledDivider />
|
||||
<StyledInfoLabel>
|
||||
<a
|
||||
|
@ -7,7 +7,6 @@ export interface IInstanceStatus {
|
||||
state?: InstanceState;
|
||||
seats?: number;
|
||||
minSeats?: number;
|
||||
isCustomBilling?: boolean;
|
||||
}
|
||||
|
||||
export enum InstanceState {
|
||||
|
Loading…
Reference in New Issue
Block a user