some styling

This commit is contained in:
Sriram Hariharan
2023-03-08 00:41:04 -06:00
parent fe8c2378d2
commit 2562e65d66
5 changed files with 17 additions and 5 deletions

View File

@@ -5,7 +5,7 @@ const courseDataHandler: MessageHandler<CourseDataMessages> = {
getDistribution({ data, sendResponse }) {
const { course } = data;
const dummyData = Array.from({ length: 18 }, () => Math.floor(Math.random() * 100));
const dummyData = Array.from({ length: 12 }, () => Math.floor(Math.random() * 100));
sendResponse(dummyData);
},