We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c82ecf commit f2295b9Copy full SHA for f2295b9
1 file changed
https/front/sagas/post.js
@@ -303,15 +303,15 @@ function* watchLoadPost() {
303
}
304
305
function* watchLoadHashtagPosts() {
306
- yield throttle(5000, LOAD_HASHTAG_POSTS_REQUEST, loadHashtagPosts);
+ yield takeLatest(LOAD_HASHTAG_POSTS_REQUEST, loadHashtagPosts);
307
308
309
function* watchLoadUserPosts() {
310
- yield throttle(5000, LOAD_USER_POSTS_REQUEST, loadUserPosts);
+ yield takeLatest(LOAD_USER_POSTS_REQUEST, loadUserPosts);
311
312
313
function* watchLoadPosts() {
314
- yield throttle(5000, LOAD_POSTS_REQUEST, loadPosts);
+ yield takeLatest(LOAD_POSTS_REQUEST, loadPosts);
315
316
317
function* watchAddPost() {
0 commit comments