Remove unused prop
This commit is contained in:
parent
56c617bd32
commit
5b73afbc4e
1 changed files with 2 additions and 2 deletions
|
@ -51,9 +51,9 @@ const ChatIndex: React.FC = () => {
|
||||||
<Stack className='col-span-6 h-full overflow-hidden'>
|
<Stack className='col-span-6 h-full overflow-hidden'>
|
||||||
{chat && (
|
{chat && (
|
||||||
<Stack className='h-full overflow-hidden'>
|
<Stack className='h-full overflow-hidden'>
|
||||||
<Chat chat={chat} onClick={() => {}} />
|
<Chat chat={chat} onClick={() => { }} />
|
||||||
<div className='h-full overflow-hidden'>
|
<div className='h-full overflow-hidden'>
|
||||||
<ChatBox className='h-full overflow-hidden' chat={chat} onSetInputRef={() => {}} />
|
<ChatBox className='h-full overflow-hidden' chat={chat} />
|
||||||
</div>
|
</div>
|
||||||
</Stack>
|
</Stack>
|
||||||
)}
|
)}
|
||||||
|
|
Loading…
Reference in a new issue