fix(dialog) remove obsolete prop no longer used in web

This commit is contained in:
Saúl Ibarra Corretgé
2022-04-25 16:19:53 +02:00
committed by Saúl Ibarra Corretgé
parent 8e65fab544
commit 0ad6bd4d83
4 changed files with 3 additions and 19 deletions

View File

@@ -19,11 +19,6 @@ type Props = {
*/
_componentProps: Object,
/**
* True if the dialog is a raw dialog (doesn't inherit behavior from other common frameworks, such as atlaskit).
*/
_rawDialog: boolean,
/**
* True if the UI is in a compact state where we don't show dialogs.
*/
@@ -73,7 +68,6 @@ export function abstractMapStateToProps(state: Object): $Shape<Props> {
return {
_component: stateFeaturesBaseDialog.component,
_componentProps: stateFeaturesBaseDialog.componentProps,
_rawDialog: stateFeaturesBaseDialog.rawDialog,
_reducedUI: reducedUI
};
}