diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 224603f9..b4fba467 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 "branch=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_OUTPUT id: extract_branch - name: Preview semantic-release version env: diff --git a/src/components/ChatBox/index.jsx b/src/components/ChatBox/index.jsx index 69c434c1..c4d6bf21 100644 --- a/src/components/ChatBox/index.jsx +++ b/src/components/ChatBox/index.jsx @@ -11,7 +11,11 @@ const ChatBox = ({ chatboxContainerRef }) => { return (
{messageList.map(({ role, content, timestamp }) => ( - + ))} {apiIsLoading && (
Xpert is thinking