Skip to content

Commit

Permalink
chore: prettify
Browse files Browse the repository at this point in the history
  • Loading branch information
Koenkk committed May 2, 2024
1 parent 494d372 commit a043387
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/dashboard-page/index.tsx
Expand Up @@ -74,7 +74,10 @@ export const onlyValidFeaturesForDashboard = (
if (genericRendererIgnoredNames.includes(name)) {
return false;
}
if (access === FeatureAccessMode.ACCESS_STATE || access === (FeatureAccessMode.ACCESS_STATE + FeatureAccessMode.ACCESS_READ)) {
if (
access === FeatureAccessMode.ACCESS_STATE ||
access === FeatureAccessMode.ACCESS_STATE + FeatureAccessMode.ACCESS_READ
) {
return filteredOutFeature;
}
if (Array.isArray(features) && features.length > 0) {
Expand Down

0 comments on commit a043387

Please sign in to comment.