Skip to content

Commit

Permalink
ui(widget): fix example question state
Browse files Browse the repository at this point in the history
  • Loading branch information
634750802 committed Jul 19, 2024
1 parent b4c4a6b commit fd28d4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/packages/widget-react/src/Widget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export function Widget ({ exampleQuestions, icon, buttonIcon, buttonLabel }: Wid
<Button
key={index}
variant="secondary"
disabled={!!myChat.postState}
disabled={!!myChat.postState.params}
onClick={() => myChat.post({ content: question })}>
{question}
</Button>
Expand Down

0 comments on commit fd28d4f

Please sign in to comment.