1
0
Fork 0
mirror of synced 2024-10-02 18:16:29 +13:00

fix types

This commit is contained in:
Peter Clement 2024-01-23 12:08:20 +00:00
parent 8a90a1a3e4
commit a4797366ad
2 changed files with 1 additions and 3 deletions

View file

@ -65,7 +65,6 @@ const INITIAL_FRONTEND_STATE = {
features: {
componentValidation: false,
disableUserMetadata: false,
enableAutomationChaining: false,
},
errors: [],
hasAppPackage: false,

View file

@ -23,7 +23,7 @@ export interface App extends Document {
automationErrors?: AppMetadataErrors
icon?: AppIcon
features?: AppFeatures
automations: AutomationSettings
automations?: AutomationSettings
}
export interface AppInstance {
@ -68,7 +68,6 @@ export interface AppIcon {
export interface AppFeatures {
componentValidation?: boolean
disableUserMetadata?: boolean
enableAutomationChaining?: boolean
}
export interface AutomationSettings {