{t('billing')}
{t('manage_billing_and_costs')}
{isCloudUserVal ? t('enterprise_cloud') : t('enterprise')}{' '}
{isFreeTrial ? Free Trial : ''}
{!isLoading && !isFetchingBillingData ? (
{daysRemaining} {daysRemainingStr}
) : null}
{licensesData?.payload?.onTrial &&
licensesData?.payload?.trialConvertedToSubscription && (
{t('card_details_recieved_and_billing_info')}
)}
{!isLoading && !isFetchingBillingData ? (
) : (
)}
{isSubscriptionPastDue &&
(!isLoading && !isFetchingBillingData ? (
) : (
))}
{!isLoading && !isFetchingBillingData && (
)}
{(isLoading || isFetchingBillingData) && renderTableSkeleton()}
{isFreeTrial && !licensesData?.payload?.trialConvertedToSubscription && (
{t('upgrade_now_text')}
{t('Your billing will start only after the trial period')}
{t('checkout_plans')}
{t('here')}
)}
);
}