opss :x fix add server

This commit is contained in:
Guilherme Gazzo 2017-09-11 22:20:58 -03:00
parent 89b5502a71
commit 01b59c8574
No known key found for this signature in database
GPG Key ID: 1F85C9AD922D0829
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ const validateServer = function* validateServer({ server }) {
const addServer = function* addServer({ server }) {
yield call(serverRequest, server);
const { error } = race({
const { error } = yield race({
error: take(SERVER.FAILURE),
success: take(SERVER.SUCCESS)
});