Remove unused prop

This commit is contained in:
Justin 2022-09-12 15:05:16 -04:00
parent 56c617bd32
commit 5b73afbc4e

View file

@ -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>
)} )}