Fix popular topics not starting chat when clicked (#6508)
This commit is contained in:
@@ -402,7 +402,15 @@ function BaseChatContent({
|
|||||||
<div className="block h-8" />
|
<div className="block h-8" />
|
||||||
</>
|
</>
|
||||||
) : !recipe && showPopularTopics ? (
|
) : !recipe && showPopularTopics ? (
|
||||||
<PopularChatTopics append={(text: string) => handleSubmit(text)} />
|
<PopularChatTopics
|
||||||
|
append={(text: string) => {
|
||||||
|
const syntheticEvent = {
|
||||||
|
detail: { value: text },
|
||||||
|
preventDefault: () => {},
|
||||||
|
} as unknown as React.FormEvent;
|
||||||
|
handleFormSubmit(syntheticEvent);
|
||||||
|
}}
|
||||||
|
/>
|
||||||
) : null}
|
) : null}
|
||||||
</ScrollArea>
|
</ScrollArea>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user