From 44f77c46c2ddef3e46ac3f36b5aa19823f682bec Mon Sep 17 00:00:00 2001 From: andreas-unleash <104830839+andreas-unleash@users.noreply.github.com> Date: Thu, 4 Aug 2022 15:49:41 +0300 Subject: [PATCH] fmt --- .../PlaygroundResultFeatureDetails/helpers.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/component/playground/Playground/PlaygroundResultsTable/FeatureResultInfoPopoverCell/PlaygroundResultFeatureDetails/helpers.ts b/frontend/src/component/playground/Playground/PlaygroundResultsTable/FeatureResultInfoPopoverCell/PlaygroundResultFeatureDetails/helpers.ts index 8a0c94aa35..ea2fe2c6fa 100644 --- a/frontend/src/component/playground/Playground/PlaygroundResultsTable/FeatureResultInfoPopoverCell/PlaygroundResultFeatureDetails/helpers.ts +++ b/frontend/src/component/playground/Playground/PlaygroundResultsTable/FeatureResultInfoPopoverCell/PlaygroundResultFeatureDetails/helpers.ts @@ -21,7 +21,7 @@ export function checkForEmptyValues(object?: Object): boolean { } export const hasCustomStrategies = (feature: PlaygroundFeatureSchema) => { - return feature.strategies?.data?.find(strategy => - !DEFAULT_STRATEGIES.includes(strategy.name) + return feature.strategies?.data?.find( + strategy => !DEFAULT_STRATEGIES.includes(strategy.name) ); };