File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
examples/dev-examples/aiChat/react/src
packages/shared/src/services/submitPrompt/utils Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -341,7 +341,7 @@ function App() {
341
341
// adapter={customSlowAdapter}
342
342
// adapter={customSimpleAdapter}
343
343
// adapter={hfAdapter}
344
- initialConversation = { initialConversation }
344
+ // initialConversation={initialConversation}
345
345
composerOptions = { {
346
346
placeholder : 'Type your prompt here' ,
347
347
autoFocus : true ,
Original file line number Diff line number Diff line change 1
1
import { CallbackFunction } from '../../../types/callbackFunction' ;
2
2
3
- export const triggerAsyncCallback = ( trigger : CallbackFunction , delay : number = 1 ) => {
3
+ export const triggerAsyncCallback = ( trigger : CallbackFunction , delay : number = 10 ) => {
4
4
setTimeout ( ( ) => {
5
5
trigger ( ) ;
6
6
} , delay ) ;
You can’t perform that action at this time.
0 commit comments