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: { features: {
componentValidation: false, componentValidation: false,
disableUserMetadata: false, disableUserMetadata: false,
enableAutomationChaining: false,
}, },
errors: [], errors: [],
hasAppPackage: false, hasAppPackage: false,

View File

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