Skip to content

Commit

Permalink
Enable business services as required bundles (#2655)
Browse files Browse the repository at this point in the history
  • Loading branch information
karelhala authored Oct 6, 2023
1 parent 159ce52 commit f138e56
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/AppFilter/useAppFilter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export type AppFilterBucket = {
links: NavItem[];
};

const previewBundles = ['business-services', 'subscriptions'];
const previewBundles = ['subscriptions'];

export const requiredBundles = [
'application-services',
Expand All @@ -23,6 +23,7 @@ export const requiredBundles = [
'settings',
'iam',
'quay',
'business-services',
...(!isProd() ? previewBundles : isBeta() ? previewBundles : []),
];

Expand Down

0 comments on commit f138e56

Please sign in to comment.