From 8b4fea7c22cfe907bd983bd654812537177dffda Mon Sep 17 00:00:00 2001 From: Kimmo Puputti Date: Thu, 23 Feb 2017 12:37:52 +0200 Subject: [PATCH] Remove loadData since it's always null with the default imports --- src/routesConfiguration.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/routesConfiguration.js b/src/routesConfiguration.js index f38109e3..5f0ac641 100644 --- a/src/routesConfiguration.js +++ b/src/routesConfiguration.js @@ -29,28 +29,24 @@ const routesConfiguration = [ exact: true, name: 'SearchPage', component: props => , - loadData: SearchPage ? SearchPage.loadData : null, routes: [ { path: '/s/filters', exact: true, name: 'SearchFiltersPage', component: props => , - loadData: SearchPage ? SearchPage.loadData : null, }, { path: '/s/listings', exact: true, name: 'SearchListingsPage', component: props => , - loadData: SearchPage ? SearchPage.loadData : null, }, { path: '/s/map', exact: true, name: 'SearchMapPage', component: props => , - loadData: SearchPage ? SearchPage.loadData : null, }, ], },