From de8e5b2d9e8cbb428f02bf759e5ab18f13cb24e4 Mon Sep 17 00:00:00 2001 From: Fedor Katurov Date: Thu, 17 Oct 2019 14:56:32 +0700 Subject: [PATCH] hide the dialog! --- src/redux/modal/reducer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/redux/modal/reducer.ts b/src/redux/modal/reducer.ts index a8d4ca97..2a7e472a 100644 --- a/src/redux/modal/reducer.ts +++ b/src/redux/modal/reducer.ts @@ -9,7 +9,7 @@ export interface IModalState { } const INITIAL_STATE: IModalState = { - is_shown: true, + is_shown: false, dialog: DIALOGS.EDITOR_TEXT, };