1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 21:06:42 +07:00

renamed messagesSetMessages to messagesSet

This commit is contained in:
Fedor Katurov 2020-09-08 11:08:17 +07:00
parent 737a4396de
commit a06e54bd78
4 changed files with 13 additions and 13 deletions

View file

@ -57,7 +57,7 @@ import { selectModal } from '~/redux/modal/selectors';
import { IModalState } from '~/redux/modal';
import { DIALOGS } from '~/redux/modal/constants';
import { ERRORS } from '~/constants/errors';
import { messagesSetMessages } from '~/redux/messages/actions';
import { messagesSet } from '~/redux/messages/actions';
export function* reqWrapper(requestAction, props = {}): ReturnType<typeof requestAction> {
const access = yield select(selectToken);
@ -155,7 +155,7 @@ function* loadProfile({ username }: ReturnType<typeof authLoadProfile>) {
}
yield put(authSetProfile({ is_loading: false, user }));
yield put(messagesSetMessages({ messages: [] }));
yield put(messagesSet({ messages: [] }));
return true;
}