fix types
This commit is contained in:
parent
8a90a1a3e4
commit
a4797366ad
|
@ -65,7 +65,6 @@ const INITIAL_FRONTEND_STATE = {
|
|||
features: {
|
||||
componentValidation: false,
|
||||
disableUserMetadata: false,
|
||||
enableAutomationChaining: false,
|
||||
},
|
||||
errors: [],
|
||||
hasAppPackage: false,
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue