From b421005b7d518c9db832e1fd04086e28d1ea9e8a Mon Sep 17 00:00:00 2001
From: Fedor Katurov <gotham48@gmail.com>
Date: Tue, 20 Apr 2021 17:54:18 +0700
Subject: [PATCH] fixed change detection by stickers

---
 src/redux/map/sagas.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/redux/map/sagas.ts b/src/redux/map/sagas.ts
index 1572bf6..0441d31 100644
--- a/src/redux/map/sagas.ts
+++ b/src/redux/map/sagas.ts
@@ -329,7 +329,7 @@ function* setChanged() {
 
 export function* mapSaga() {
   yield takeEvery(
-    [MAP_ACTIONS.SET_ROUTE, MAP_ACTIONS.SET_STICKER, MAP_ACTIONS.SET_STICKERS],
+    [MAP_ACTIONS.SET_ROUTE, MAP_ACTIONS.SET_STICKER, MAP_ACTIONS.SET_STICKERS, MAP_ACTIONS.ADD_STICKER],
     setChanged,
   );