From 50046c92b0291289b56d47c2e57b54d2bed59fed Mon Sep 17 00:00:00 2001 From: Paul-Simon Emechebe Date: Tue, 28 Jun 2022 00:36:24 +0100 Subject: [PATCH] fix: camel cased the variable "cardChart" --- src/logged_in/components/dashboard/Dashboard.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/logged_in/components/dashboard/Dashboard.js b/src/logged_in/components/dashboard/Dashboard.js index 80c5aa38c..aacc75df7 100644 --- a/src/logged_in/components/dashboard/Dashboard.js +++ b/src/logged_in/components/dashboard/Dashboard.js @@ -9,7 +9,7 @@ import StatisticsArea from "./StatisticsArea"; function Dashboard(props) { const { selectDashboard, - CardChart, + cardChart, statistics, toggleAccountActivation, pushMessageToSnackbar, @@ -48,7 +48,7 @@ function Dashboard(props) { } Dashboard.propTypes = { - CardChart: PropTypes.elementType, + cardChart: PropTypes.elementType, statistics: PropTypes.object.isRequired, toggleAccountActivation: PropTypes.func, pushMessageToSnackbar: PropTypes.func,