Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/components/Composer.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ describe('Composer', () => {
render(<Composer />)
expect(screen.getByLabelText('Message')).toBeInTheDocument()
expect(screen.getByRole('button', { name: 'Send' })).toBeDisabled()
expect(screen.getByText('Jarvis can make mistakes. Check important details.')).toBeInTheDocument()
})

it('enables sending once text is typed', async () => {
Expand Down
3 changes: 3 additions & 0 deletions src/components/Composer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,9 @@ export function Composer() {
</p>
)}
</div>
<p className="mx-auto mt-2 max-w-3xl px-2 text-center text-[0.7rem] text-muted">
Jarvis can make mistakes. Check important details.
</p>
</div>
)
}