Skip to content

Commit

Permalink
Merge branch 'partner-invite' of https://github.com/dubinc/dub into p…
Browse files Browse the repository at this point in the history
…artner-invite
  • Loading branch information
steven-tey committed Nov 14, 2024
2 parents c731bea + 794e6fa commit 9bbe845
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion apps/web/ui/webhooks/webhook-events.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ const WebhookEvent = ({ event }: { event: WebhookEventProps }) => {
open={isOpen}
onOpenChange={setIsOpen}
contentProps={{ className: "md:w-[650px]" }}
handleOnly
>
<div className="p-6">
<div className="flex items-start justify-between">
Expand Down
3 changes: 2 additions & 1 deletion packages/ui/src/sheet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function SheetRoot({
>) {
const RootComponent = nested ? Drawer.NestedRoot : Drawer.Root;
return (
<RootComponent direction="right" {...rest}>
<RootComponent direction="right" handleOnly {...rest}>
<Drawer.Portal>
<Drawer.Overlay className="fixed inset-0 bg-black/20" />
<Drawer.Content
Expand All @@ -37,6 +37,7 @@ function SheetRoot({
// 8px between edge of screen and drawer
{
"--initial-transform": "calc(100% + 8px)",
"user-select": "auto", // Override default user-select: none from Vaul
...contentProps?.style,
} as React.CSSProperties
}
Expand Down

0 comments on commit 9bbe845

Please sign in to comment.