Skip to content

Commit

Permalink
fix: modal class name (#412)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yonom authored Jul 5, 2024
1 parent f177533 commit bb9241b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions packages/react-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @assistant-ui/react-ui

## 0.0.17

### Patch Changes

- Fix AssistantModalAnchor className

## 0.0.16

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@assistant-ui/react-ui",
"version": "0.0.16",
"version": "0.0.17",
"license": "MIT",
"exports": {
".": {
Expand Down
2 changes: 1 addition & 1 deletion packages/react-ui/src/components/assistant-modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export const AssistantModalTrigger = forwardRef<
AssistantModalTrigger.displayName = "AssistantModalTrigger";

const AssistantModalAnchor = styled(AssistantModalPrimitive.Anchor, {
className: "aui-root aui-assistant-anchor",
className: "aui-root aui-modal-anchor",
});

AssistantModalAnchor.displayName = "AssistantModalAnchor";
Expand Down

0 comments on commit bb9241b

Please sign in to comment.