Skip to content

Commit

Permalink
fix(dashboard): fix modernExtend entities not appearing on dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
Koenkk committed Apr 25, 2024
1 parent 35d9491 commit 34c77c2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/dashboard-page/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,7 @@ export const onlyValidFeaturesForDashboard = (
if (genericRendererIgnoredNames.includes(name)) {
return false;
}

if (access & FeatureAccessMode.ACCESS_STATE && isOnlyOneBitIsSet(access)) {
if (access & FeatureAccessMode.ACCESS_STATE) {
return filteredOutFeature;
}
if (Array.isArray(features) && features.length > 0) {
Expand Down

0 comments on commit 34c77c2

Please sign in to comment.