Skip to content

Commit

Permalink
fix: classes order
Browse files Browse the repository at this point in the history
  • Loading branch information
sirineJ committed Dec 16, 2024
1 parent 7a49688 commit 70a40ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/circuit-ui/components/Modal/Modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -290,9 +290,9 @@ export const Modal = forwardRef<HTMLDialogElement, ModalProps>((props, ref) => {
onClick={onDialogClick}
ref={applyMultipleRefs(ref, dialogRef)}
className={clsx(
className,
classes.dialog,
variant === 'immersive' && classes.immersive,
className,
)}
{...rest}
>
Expand Down

0 comments on commit 70a40ec

Please sign in to comment.