fixing linter

Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
This commit is contained in:
Francisco Javier Arceo 2025-08-14 17:09:36 -04:00
parent 2fb07a7034
commit d3097ecc73
20 changed files with 122 additions and 104 deletions

View file

@ -62,7 +62,9 @@ export function MessageInput({
} = useAudioRecording({
transcribeAudio,
onTranscriptionComplete: text => {
props.onChange?.({ target: { value: text } } as any);
props.onChange?.({
target: { value: text },
} as React.ChangeEvent<HTMLTextAreaElement>);
},
});