diff --git a/frontend/src/metabase/dashboard/components/DashboardGrid.jsx b/frontend/src/metabase/dashboard/components/DashboardGrid.jsx
index db1d44d30f038d8be14f2abc8c3ee41b1705a7a3..d1bafe281e363325b4c04b976bc20241276ccac8 100644
--- a/frontend/src/metabase/dashboard/components/DashboardGrid.jsx
+++ b/frontend/src/metabase/dashboard/components/DashboardGrid.jsx
@@ -65,10 +65,6 @@ export default class DashboardGrid extends Component {
         isEditingParameter: false
     };
 
-    shouldComponentUpdate(nextProps, nextState) {
-        return !(shallowEqual(this.props, nextProps) && shallowEqual(this.state, nextState));
-    }
-
     componentWillReceiveProps(nextProps) {
         this.setState({
             dashcards: this.getSortedDashcards(nextProps),