Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Bug for Chat Reply Goes off Screen #1393

Merged
merged 8 commits into from
Jan 7, 2024
2 changes: 1 addition & 1 deletion web/screens/Chat/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ const ChatScreen = () => {
</div>
<div
className={twMerge(
'relative flex h-full flex-col bg-background',
'relative flex h-full flex-col overflow-auto bg-background',
activeThread && activeThreadId && showing
? 'w-[calc(100%-560px)]'
: 'w-full'
Expand Down
Loading