diff --git a/client/src/App.js b/client/src/App.js index a773083..bdf78d1 100644 --- a/client/src/App.js +++ b/client/src/App.js @@ -8,6 +8,7 @@ import { mainMenuItems } from './constants/menuItems'; class App extends Component { render() { + document.title='Sima Space CRM'; return ( diff --git a/client/src/scenes/Home/index.js b/client/src/scenes/Home/index.js index b344612..21c2698 100644 --- a/client/src/scenes/Home/index.js +++ b/client/src/scenes/Home/index.js @@ -15,17 +15,17 @@ class Home extends Component {
{ mainMenuItems.map((menuItem) => { - const { showOnHomePage, title, description, url} = menuItem; + const { id, showOnHomePage, title, description, url} = menuItem; if (showOnHomePage){ - return ( - + {title}
{description}
); } + return null; }) } diff --git a/controllers/integration.js b/controllers/integration.js index 5b17d23..7cfee70 100644 --- a/controllers/integration.js +++ b/controllers/integration.js @@ -151,6 +151,7 @@ const addFees = (req, res) => { }) }) .catch((error) => { + console.log(error); res.status(500).send(error); }); }) @@ -159,6 +160,7 @@ const addFees = (req, res) => { res.status(500).send(error); }) }else{ + console.log('Date range is missing to send fees to ORD'); res.status(400).send('Date range is missing'); } };