diff --git a/src/redux/node/sagas.ts b/src/redux/node/sagas.ts index 2fe65c9a..2061efe9 100644 --- a/src/redux/node/sagas.ts +++ b/src/redux/node/sagas.ts @@ -141,9 +141,14 @@ function* onNodeLoad({ id, order = 'ASC' }: ReturnType) { related: call(reqWrapper, getNodeRelated, { id }), }); - yield put(nodeSetComments(comments || [])); - yield put(nodeSetRelated(related || [])); - yield put(nodeSetLoadingComments(false)); + yield put( + nodeSet({ + comments, + related, + is_loading_comments: false, + comment_data: { 0: { ...EMPTY_COMMENT } }, + }) + ); const { updated } = yield select(selectFlow);