Skip to content

Commit

Permalink
Remove unnecessary export
Browse files Browse the repository at this point in the history
  • Loading branch information
alimpens committed Sep 10, 2024
1 parent 20c45ae commit ffd67d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react/src/Dialog/Dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export type DialogProps = {

const closeDialog = (event: MouseEvent<HTMLButtonElement>) => event.currentTarget.closest('dialog')?.close()

export const DialogRoot = forwardRef(
const DialogRoot = forwardRef(
(
{ actions, children, className, closeButtonLabel = 'Sluiten', heading, ...restProps }: DialogProps,
ref: ForwardedRef<HTMLDialogElement>,
Expand Down

0 comments on commit ffd67d4

Please sign in to comment.