I made a function to get request. It look like this
export const toggleCompleted  = (id) => {
    axiosMethod.get('api/taks/toggle/' + id)
               .then(res => {
                   console.log(res.data)
                  return res.data;
               }).catch(error => {
                   return error;
               })
    return 'Test';
}
I want to get this request and if PHP return true, run dispatch. So I made this code
const markAsCompleted = (id) => {
    console.log(toggleCompleted(id));
    if (toggleCompleted(id) == 1){
        toggleMarkAsCompleted(id);
    }
   
}
toggleCompleted is a my request which is show before toggleMarkAsCompletedis my dispatch. If toggleCompleted return 1 I want to run my dispatch. It's simple? Interested is that this code
console.log(toggleCompleted(id));
return Test while my request 1 or 0 (from .then()). Why?
 
    