Skip to content

Commit

Permalink
word lenngth removed
Browse files Browse the repository at this point in the history
  • Loading branch information
anjanaw committed Feb 7, 2024
1 parent 24eeb14 commit bb1fd9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/chatbot/DialogQuestionnaires.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ const DialogQuestionnaires: React.FC<Params> = (props) => {
onClick={sendAndReceive}
disabled={
(text == '' && responseType == ResponseType.NUMBER) ||
(words(text) < 100 && responseType == ResponseType.OPEN) ||
(words(text) < 1 && responseType == ResponseType.OPEN) ||
(!check && responseType == ResponseType.CHECK) ||
(!radio && responseType == ResponseType.RADIO) ||
(!likert && responseType == ResponseType.LIKERT) ||
Expand Down

0 comments on commit bb1fd9d

Please sign in to comment.