diff --git a/pages/dashboard/index.tsx b/pages/dashboard/index.tsx
index 0491ca49..89d45109 100644
--- a/pages/dashboard/index.tsx
+++ b/pages/dashboard/index.tsx
@@ -1,5 +1,7 @@
import {
Card,
+ FormControl,
+ FormHelperText,
Grid,
InputLabel,
LinearProgress,
@@ -398,8 +400,35 @@ export const Dashboard: NextPage = () => {
gradesPage = (
<>
+
+ Number(value).toFixed(0) + '%'}
+ series={gradesData}
+ />
+
-
+ endingSession}
+ variant="standard"
+ >
From
-
-
+
+ endingSession}
+ variant="standard"
+ >
To
-
+
-
- Number(value).toFixed(0) + '%'}
- series={gradesData}
- />
-
+ {startingSession > endingSession ? (
+
+ Starting academic session must be before ending academic session
+
+ ) : null}
>
);