Skip to content

Commit

Permalink
fix: padding for the thread
Browse files Browse the repository at this point in the history
  • Loading branch information
skoob13 committed Oct 29, 2024
1 parent a382bfa commit d162c45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/scenes/max/Thread.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export function Thread(): JSX.Element | null {
const { retryLastMessage } = useActions(maxLogic)

return (
<div className="flex flex-col items-stretch w-full max-w-200 self-center gap-2 grow m-4">
<div className="flex flex-col items-stretch w-full max-w-200 self-center gap-2 grow p-4">
{thread.map((message, index) => {
if (isHumanMessage(message)) {
return (
Expand Down

0 comments on commit d162c45

Please sign in to comment.