Skip to content

Commit

Permalink
perf: test commit
Browse files Browse the repository at this point in the history
  • Loading branch information
huniafatima-arbi committed Jul 1, 2024
1 parent 3aa7e21 commit 0779bf9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
uses: codecov/codecov-action@v4
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
run: echo "##[name=branch;]$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_STATE
id: extract_branch
- name: Preview semantic-release version
env:
Expand Down
3 changes: 1 addition & 2 deletions src/components/ChatBox/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ const ChatBox = ({ chatboxContainerRef }) => {
return (
<div ref={chatboxContainerRef} className="flex-grow-1 scroller d-flex flex-column pb-4">
{messageList.map(({ role, content, timestamp }) => (
<Message
key={timestamp.toString()}
<Message key={timestamp.toString()}

Check failure on line 14 in src/components/ChatBox/index.jsx

View workflow job for this annotation

GitHub Actions / test

Property should be placed on a new line
variant={role}
message={content}
/>
Expand Down

0 comments on commit 0779bf9

Please sign in to comment.