From 05ffb43b3ee91f3a3db6e030d8b9bf922635ca3f Mon Sep 17 00:00:00 2001 From: Rohit Singh Date: Fri, 28 Oct 2022 14:13:35 +0530 Subject: [PATCH] fix: typo in prop description --- src/components/composites/AlertDialog/types.ts | 2 +- src/components/composites/Modal/types.ts | 2 +- src/components/composites/Toast/types.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/composites/AlertDialog/types.ts b/src/components/composites/AlertDialog/types.ts index c01990dc4..c7d425d5d 100644 --- a/src/components/composites/AlertDialog/types.ts +++ b/src/components/composites/AlertDialog/types.ts @@ -38,7 +38,7 @@ export interface InterfaceAlertDialogProps */ finalFocusRef?: React.RefObject | any; /** - * If true and the keyboard is opened, the AlertDialog will move up equvivalent to the keyboard height. + * If true and the keyboard is opened, the AlertDialog will move up equivalent to the keyboard height. * @default false */ avoidKeyboard?: boolean; diff --git a/src/components/composites/Modal/types.ts b/src/components/composites/Modal/types.ts index 1ced266cc..9737ecd33 100644 --- a/src/components/composites/Modal/types.ts +++ b/src/components/composites/Modal/types.ts @@ -32,7 +32,7 @@ export interface InterfaceModalProps extends InterfaceBoxProps { */ finalFocusRef?: React.RefObject; /** - * If true and the keyboard is opened, the modal will move up equvivalent to the keyboard height. + * If true and the keyboard is opened, the modal will move up equivalent to the keyboard height. * @default false */ avoidKeyboard?: boolean; diff --git a/src/components/composites/Toast/types.ts b/src/components/composites/Toast/types.ts index f633b87c0..ce268b22d 100644 --- a/src/components/composites/Toast/types.ts +++ b/src/components/composites/Toast/types.ts @@ -57,7 +57,7 @@ export interface InterfaceToastProps extends InterfaceBoxProps { */ accessibilityLiveRegion?: 'none' | 'polite' | 'assertive'; /** - * If true and the keyboard is opened, the Toast will move up equvivalent to the keyboard height. + * If true and the keyboard is opened, the Toast will move up equivalent to the keyboard height. * @default false */ avoidKeyboard?: boolean;