diff --git a/src/app/branding/branding-config.ts b/src/app/branding/branding-config.ts index 093480aaf..b8a316326 100644 --- a/src/app/branding/branding-config.ts +++ b/src/app/branding/branding-config.ts @@ -290,10 +290,6 @@ const content: ContentConfiguration = { setDescriptionField: 'Set the description field in Xero', dfvLabel: 'Default field values', dfvSubLabel: 'If you\'ve made a field mandatory in Xero but don\'t collect a value from your employees in the expense form, you can set a default value here to be added to all the expenses. For location and department, you can opt to use the values from your employee records in Xero.' - }, - done: { - ctaText: '', - hintText: '' } } }, @@ -523,10 +519,6 @@ const content: ContentConfiguration = { setDescriptionField: 'Set the description field in Xero', dfvLabel: 'Default field values', dfvSubLabel: 'If you\'ve made a field mandatory in Xero but don\'t collect a value from your employees in the expense form, you can set a default value here to be added to all the expenses. For location and department, you can opt to use the values from your employee records in Xero.' - }, - done: { - ctaText: '', - hintText: '' } } }, diff --git a/src/app/core/models/branding/content-configuration.model.ts b/src/app/core/models/branding/content-configuration.model.ts index 3da704f67..91edfceb5 100644 --- a/src/app/core/models/branding/content-configuration.model.ts +++ b/src/app/core/models/branding/content-configuration.model.ts @@ -49,10 +49,6 @@ export type ContentConfiguration = { setDescriptionField: string; dfvLabel: string; dfvSubLabel: string; - }, - done: { - ctaText: string; - hintText: string; } }, },