Fix: Change the background color of the message notification button. (#13344)

### What problem does this PR solve?

Fix: Change the background color of the message notification button.

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
balibabu
2026-03-04 11:10:05 +08:00
committed by GitHub
parent 839b603768
commit 733a64f0d6

View File

@ -102,7 +102,12 @@ export const AssistantGroupButton = ({
</>
)}
{prompt && (
<Button onClick={showPromptModal}>
<Button
onClick={showPromptModal}
variant="transparent"
size="icon-xs"
className="border-0"
>
<PromptIcon style={{ fontSize: '16px' }} />
</Button>
)}