1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

fix: remove console from FeatureToggleSwitch (#4928)

Removes missed console log from FeatureToggleSwitch

Signed-off-by: andreas-unleash <andreas@getunleash.ai>
This commit is contained in:
andreas-unleash 2023-10-05 16:00:49 +03:00 committed by GitHub
parent e418e9c46f
commit bd008c821a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -150,10 +150,6 @@ export const FeatureToggleSwitch: VFC<IFeatureToggleSwitchProps> = ({
};
const onClick = async () => {
console.log('*********');
console.log(enableProdGuard);
console.log(isChangeRequestConfigured(environmentName));
console.log('*********');
if (enableProdGuard && !isChangeRequestConfigured(environmentName)) {
setShowProdGuard(true);
} else {