refactor: Feature type
This commit is contained in:
parent
062caab553
commit
a97106e263
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
export type Features = 'Send to Email' | 'Hide Images';
|
||||
export type Feature = 'Send to Email' | 'Hide Images';
|
||||
|
||||
export const featureFlags: Record<Features, boolean> = {
|
||||
export const featureFlags: Record<Feature, boolean> = {
|
||||
'Send to Email': false,
|
||||
'Hide Images': false,
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue