Removed isBeta property from SettingsSection interface since it was not used anymore in the template (#142313)

This commit is contained in:
Yngrid Coello 2022-09-30 12:36:12 +02:00 committed by GitHub
parent 6b11352f71
commit f6149a610f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions

View file

@ -133,7 +133,6 @@ export function APMPolicyForm({ vars = {}, updateAPMPolicy }: Props) {
}
),
settings: tailSamplingSettings,
isBeta: false,
isPlatinumLicence: true,
},
]

View file

@ -92,7 +92,6 @@ export interface SettingsSection {
title: string;
subtitle?: string;
settings: SettingsRow[];
isBeta?: boolean;
isPlatinumLicence?: boolean;
}