File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
packages/botonic-plugin-flow-builder/src
content-fields/hubtype-fields Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ async function getContentsByUserInput({
64
64
resolvedLocale,
65
65
} )
66
66
67
- const hasRepeatedContent = await checkRepetedContents (
67
+ const hasRepeatedContent = await checkRepeatedContents (
68
68
flowBuilderPlugin ,
69
69
resolvedLocale ,
70
70
contentsByKeywordsOrIntents
@@ -94,7 +94,7 @@ function getConversationStartId(cmsApi: FlowBuilderApi) {
94
94
return conversationStartId
95
95
}
96
96
97
- async function checkRepetedContents (
97
+ async function checkRepeatedContents (
98
98
flowBuilderPlugin : BotonicPluginFlowBuilder ,
99
99
resolvedLocale : string ,
100
100
contentsByKeywordsOrIntents : FlowContent [ ]
Original file line number Diff line number Diff line change 1
1
import { HtBaseNode , HtInputLocale , HtTextLocale } from './common'
2
2
import { HtNodeWithContentType } from './node-types'
3
3
4
+ // TODO: Remove this because frontend no allow create intents babel
4
5
export interface HtIntentNode extends HtBaseNode {
5
6
type : HtNodeWithContentType . INTENT
6
7
content : {
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ import { FlowContent } from './content-fields'
5
5
import {
6
6
HtNodeWithContent ,
7
7
HtNodeWithContentType ,
8
- HtNodeWithoutContentType ,
9
8
} from './content-fields/hubtype-fields'
10
9
import { getFlowBuilderPlugin } from './helpers'
11
10
You can’t perform that action at this time.
0 commit comments