From c29c034c152a639f4c91778aab34ef629f9fbcc1 Mon Sep 17 00:00:00 2001 From: Kevin Davis Date: Wed, 22 Jan 2025 17:16:19 +0100 Subject: [PATCH] chore: remove comment, docs --- src/core/components/dialogs/dialog/dialogRoot/dialogRoot.tsx | 2 -- .../dialogs/dialogAlert/dialogAlertRoot/dialogAlertRoot.api.ts | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/core/components/dialogs/dialog/dialogRoot/dialogRoot.tsx b/src/core/components/dialogs/dialog/dialogRoot/dialogRoot.tsx index 0cb691b3..e39ab089 100644 --- a/src/core/components/dialogs/dialog/dialogRoot/dialogRoot.tsx +++ b/src/core/components/dialogs/dialog/dialogRoot/dialogRoot.tsx @@ -29,8 +29,6 @@ export const DialogRoot: React.FC = (props) => { overlayClassName, ); - // const sizeClassNames = responsiveUtils.generateClassNames(size, {}, responsiveSizeDialogClassNames); - // The backdraw is a flex container that fills the screen while aligning // and constraining the dialog vertically based on the viewport size. const backdrawClassNames = classNames( diff --git a/src/core/components/dialogs/dialogAlert/dialogAlertRoot/dialogAlertRoot.api.ts b/src/core/components/dialogs/dialogAlert/dialogAlertRoot/dialogAlertRoot.api.ts index 8467e1bb..8a481ff5 100644 --- a/src/core/components/dialogs/dialogAlert/dialogAlertRoot/dialogAlertRoot.api.ts +++ b/src/core/components/dialogs/dialogAlert/dialogAlertRoot/dialogAlertRoot.api.ts @@ -6,7 +6,7 @@ export type DialogAlertVariant = 'critical' | 'info' | 'success' | 'warning'; export interface IDialogAlertRootProps extends Omit { /** - * The visual style variant of the dialog. + * The visual style variant of the dialog alert. * @default info */ variant?: DialogAlertVariant;