From 559de8ebd58464b9b35f372385fc6176a81cf8ac Mon Sep 17 00:00:00 2001 From: Angela Zheng <92692008+AngelaZQ1@users.noreply.github.com> Date: Wed, 25 Oct 2023 10:13:50 -0400 Subject: [PATCH] add courses (#637) --- .../frontend-v2/components/AddCourseModal/AddCourseButton.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/frontend-v2/components/AddCourseModal/AddCourseButton.tsx b/packages/frontend-v2/components/AddCourseModal/AddCourseButton.tsx index e78d1e104..918e121f9 100644 --- a/packages/frontend-v2/components/AddCourseModal/AddCourseButton.tsx +++ b/packages/frontend-v2/components/AddCourseModal/AddCourseButton.tsx @@ -17,7 +17,7 @@ export const AddCourseButton: React.FC = ({ const activeStyle = { backgroundColor: "neutral.900", borderColor: "primary.blue.dark.300", - transform: "scale(0.96)" + transform: "scale(0.96)", }; return ( @@ -34,7 +34,7 @@ export const AddCourseButton: React.FC = ({ color="primary.blue.light.main" {...buttonProps} > - Add Course + Add Courses ); };