segunolalive/helloBooks

View on GitHub
client/actions/reportNetworkError.js

Summary

Maintainability
A
0 mins
Test Coverage
import Notify from './Notify';

const reportNetworkError = error => (error.response ?
  Notify.error(error.response.data.message) :
  Notify.error(`${error.message}. It appears you're offline`));

export default reportNetworkError;