Skip to content

Commit

Permalink
Fix dialog content props
Browse files Browse the repository at this point in the history
  • Loading branch information
vineethasok committed Nov 7, 2023
1 parent 43c5540 commit 8a5100d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Dialog/Dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,14 +110,15 @@ const DialogContent = ({
forceMount,
container,
showOverlay = true,
...props
}: DialogContentProps) => {
return (
<RadixDialog.Portal
forceMount={forceMount}
container={container}
>
{showOverlay && <DialogOverlay />}
<ContentArea>
<ContentArea {...props}>
<TitleArea>
<Title
size="xl"
Expand Down

0 comments on commit 8a5100d

Please sign in to comment.