diff --git a/src/redux/auth/sagas.ts b/src/redux/auth/sagas.ts index 16fde585..7a768283 100644 --- a/src/redux/auth/sagas.ts +++ b/src/redux/auth/sagas.ts @@ -294,7 +294,7 @@ function* getUpdates() { function* startPollingSaga() { while (true) { yield call(getUpdates); - yield delay(10000); + yield delay(60000); } }