Skip to content

Commit

Permalink
re-arrange the features for compound
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinNagpal committed May 20, 2024
1 parent fc57ce4 commit acd4111
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 13 deletions.
20 changes: 7 additions & 13 deletions src/types/features/compoundFeatures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,20 @@ import { FeatureItem, FeatureName } from '@/types/features/spaceFeatures';

export const compoundFeatures: FeatureItem[] = [
{
featureName: FeatureName.Guides,
enabled: true,
details: {
priority: 90,
},
},
{
featureName: FeatureName.Chatbot,
featureName: FeatureName.ByteCollections,
enabled: true,
details: {
priority: 85,
priority: 80,
},
},
{
featureName: FeatureName.Bytes,
featureName: FeatureName.Guides,
enabled: true,
details: {
priority: 80,
priority: 90,
},
},

{
featureName: FeatureName.Simulations,
enabled: true,
Expand All @@ -37,10 +31,10 @@ export const compoundFeatures: FeatureItem[] = [
},
},
{
featureName: FeatureName.Courses,
featureName: FeatureName.Chatbot,
enabled: true,
details: {
priority: 50,
priority: 85,
},
},
];
1 change: 1 addition & 0 deletions src/types/features/spaceFeatures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ export enum FeatureName {
Chatbot = 'Chatbot',
Bytes = 'Bytes',
ByteCollections = 'ByteCollections',
ByteCollectionCategories = 'ByteCollectionCategories',
Guides = 'Guides',
Shorts = 'Shorts',
Simulations = 'Simulations',
Expand Down

0 comments on commit acd4111

Please sign in to comment.