Skip to content

Commit

Permalink
Adjust boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
gggritso committed Oct 18, 2024
1 parent 45a454d commit 937de50
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,12 @@ const useIndexedEventsWarning = (): string | null => {
const organization = useOrganization();
const metricSettingContext = useMEPSettingContext();

return (
!organization.features.includes('performance-mep-bannerless-ui') &&
return !organization.features.includes('performance-mep-bannerless-ui') &&
isMetricsData === false &&
metricSettingContext &&
metricSettingContext.metricSettingState !== MEPState.TRANSACTIONS_ONLY &&
t('Indexed')
);
metricSettingContext.metricSettingState !== MEPState.TRANSACTIONS_ONLY
? t('Indexed')
: null;
};

function WidgetCardContextMenu({
Expand Down

0 comments on commit 937de50

Please sign in to comment.