Skip to content

Commit

Permalink
refactor: update isNew property for multiple features
Browse files Browse the repository at this point in the history
  • Loading branch information
a-ng-d committed Sep 5, 2024
1 parent 77124ab commit 3c3f5b5
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/utils/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export const features: Array<Feature> = [
description: 'Publish palette to the community and self',
isActive: true,
isPro: false,
isNew: true,
isNew: false,
type: 'ACTION',
service: ['EDIT'],
},
Expand All @@ -107,7 +107,7 @@ export const features: Array<Feature> = [
description: 'Palettes that can be reused',
isActive: true,
isPro: true,
isNew: true,
isNew: false,
type: 'CONTEXT',
service: ['CREATE'],
},
Expand All @@ -116,7 +116,7 @@ export const features: Array<Feature> = [
description: 'Self-created palettes',
isActive: true,
isPro: false,
isNew: true,
isNew: false,
type: 'CONTEXT',
service: ['CREATE'],
},
Expand All @@ -125,7 +125,7 @@ export const features: Array<Feature> = [
description: 'Community palettes',
isActive: true,
isPro: false,
isNew: true,
isNew: false,
type: 'CONTEXT',
service: ['CREATE'],
},
Expand All @@ -143,7 +143,7 @@ export const features: Array<Feature> = [
description: 'Raw source colors',
isActive: true,
isPro: false,
isNew: true,
isNew: false,
type: 'CONTEXT',
service: ['CREATE'],
},
Expand All @@ -161,7 +161,7 @@ export const features: Array<Feature> = [
description: 'External color palettes from Colour Lovers',
isActive: true,
isPro: false,
isNew: true,
isNew: false,
type: 'CONTEXT',
service: ['CREATE'],
},
Expand Down Expand Up @@ -197,7 +197,7 @@ export const features: Array<Feature> = [
description: 'Import colors from a Colour Lovers palette',
isActive: true,
isPro: false,
isNew: true,
isNew: false,
type: 'ACTION',
service: ['CREATE'],
},
Expand Down Expand Up @@ -917,7 +917,7 @@ export const features: Array<Feature> = [
description: 'Bug reports',
isActive: true,
isPro: false,
isNew: true,
isNew: false,
type: 'ACTION',
service: ['CREATE', 'EDIT'],
},
Expand All @@ -926,7 +926,7 @@ export const features: Array<Feature> = [
description: 'Feature requests',
isActive: true,
isPro: false,
isNew: true,
isNew: false,
type: 'ACTION',
service: ['CREATE', 'EDIT'],
},
Expand Down

0 comments on commit 3c3f5b5

Please sign in to comment.