Skip to content

Commit

Permalink
Merge branch 'canary' into fix/add-test-resolutions-support
Browse files Browse the repository at this point in the history
  • Loading branch information
kodiakhq[bot] committed Sep 14, 2023
2 parents a30d837 + cd1a50f commit a837443
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -702,8 +702,8 @@ export function Thread({ messages }: { messages: Message[] }) {

return (
<div>
{optimisticMessages.map((m) => (
<div>{m.message}</div>
{optimisticMessages.map((m, k) => (
<div key={k}>{m.message}</div>
))}
<form
action={async (formData: FormData) => {
Expand Down

0 comments on commit a837443

Please sign in to comment.