### What problem does this PR solve? Fix (dataset setting): Remove the introduction and use of TagItems in the configuration. #9869 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
17 lines
480 B
TypeScript
17 lines
480 B
TypeScript
import {
|
|
AutoKeywordsFormField,
|
|
AutoQuestionsFormField,
|
|
} from '@/components/auto-keywords-form-field';
|
|
import { ConfigurationFormContainer } from '../configuration-form-container';
|
|
|
|
export function EmailConfiguration() {
|
|
return (
|
|
<ConfigurationFormContainer>
|
|
<>
|
|
<AutoKeywordsFormField></AutoKeywordsFormField>
|
|
<AutoQuestionsFormField></AutoQuestionsFormField>
|
|
</>
|
|
{/* <TagItems></TagItems> */}
|
|
</ConfigurationFormContainer>
|
|
);
|
|
}
|