From 0bcb8b298dd2ff7f657e395e5285e1b80fe9a643 Mon Sep 17 00:00:00 2001 From: Andrei Firsov Date: Mon, 17 Dec 2018 15:58:02 +0300 Subject: [PATCH] fix(Dialog): removes redundant scrollable prop --- src/atoms/Dialog/DialogBody.js | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/atoms/Dialog/DialogBody.js b/src/atoms/Dialog/DialogBody.js index ba4c101f..08556d45 100644 --- a/src/atoms/Dialog/DialogBody.js +++ b/src/atoms/Dialog/DialogBody.js @@ -12,16 +12,7 @@ type DialogBodyProps = {| const name = 'dialogBody'; -const theme = createComponentTheme(name, { - modifiers: { - scrollable: { - overflow: 'auto', - }, - }, - defaults: { - scrollable: true, - }, -}); +const theme = createComponentTheme(name, {}); const DialogBodyTag = createStyledTag(name, { flexShrink: 1,