Skip to content

Commit

Permalink
Merge pull request #163 from nlxai/fix-chatconfig-editor
Browse files Browse the repository at this point in the history
Fix chat configuration language editor
  • Loading branch information
peterszerzo authored Sep 24, 2024
2 parents 20209ac + d0e9994 commit 463c42f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/website/src/components/ChatConfiguration.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export const ConfigEditor: FC<{
className={inputClass}
value={config.languageCode}
onInput={(ev: any) => {
props.onChange({ headers: { languageCode: ev.target.value } });
props.onChange({ languageCode: ev.target.value });
}}
/>
</Labeled>
Expand Down

0 comments on commit 463c42f

Please sign in to comment.