Skip to content

Commit

Permalink
type fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AudreyKj committed Aug 12, 2022
1 parent 7503ebe commit 6ed9911
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ export const ConnectNewDialogflow = ({createNewConnection, isEnabled, isConfigur
const [replyConfidenceLevel, setReplyConfidenceLevel] = useState(componentInfo?.replyConfidenceLevel || '');
const [isUpdateModalVisible, setIsUpdateModalVisible] = useState(false);
const [processorWaitingTime, setProcessorWaitingTime] = useState(
componentInfo?.connectorStoreMessagesProcessorMaxWaitMillis || 5000
componentInfo?.connectorStoreMessagesProcessorMaxWaitMillis || '5000'
);
const [processorCheckPeriod, setProcessorCheckPeriod] = useState(
componentInfo?.connectorStoreMessagesProcessorCheckPeriodMillis || 2500
componentInfo?.connectorStoreMessagesProcessorCheckPeriodMillis || '2500'
);
const [defaultLanguage, setDefaultLanguage] = useState(componentInfo?.connectorDefaultLanguage || 'en');

Expand Down Expand Up @@ -185,7 +185,6 @@ export const ConnectNewDialogflow = ({createNewConnection, isEnabled, isConfigur
placeholder={t('defaultLanguage')}
showLabelIcon
tooltipText={t('defaultLanguageTooltip')}
tooltipLink="https://airy.co/docs/enterprise/apps/dialogflow/deployment"
required
height={32}
fontClass="font-base"
Expand Down

0 comments on commit 6ed9911

Please sign in to comment.