Skip to content

Commit

Permalink
Fix eslint issue in EditChatInput (janhq#2864)
Browse files Browse the repository at this point in the history
  • Loading branch information
QuentinMacheda authored May 3, 2024
1 parent 2016eae commit c21bc08
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions web/screens/Chat/EditChatInput/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,12 +129,10 @@ const EditChatInput: React.FC<Props> = ({ message }) => {
}

return (
<div className="mx-auto flex w-full flex-col flex-shrink-0 items-start justify-center space-y-4 pb-0 pt-1">
<div className="mx-auto flex w-full flex-shrink-0 flex-col items-start justify-center space-y-4 pb-0 pt-1">
<div className="relative flex w-full flex-col">
<Textarea
className={twMerge(
'max-h-[400px] resize-none pr-20'
)}
className={twMerge('max-h-[400px] resize-none pr-20')}
style={{ height: '40px' }}
ref={textareaRef}
onKeyDown={onKeyDown}
Expand Down

0 comments on commit c21bc08

Please sign in to comment.