handleAction use **flux-standard-action** method **isError** > import { isError } from 'flux-standard-action'; the method is simple, but it will import some lodash method when compile by webpack. ``` function isError(action) { return action.error === true; } ``` I suggest remove the flux dep for descrease the compilse file size.