From 1ba089c09df64031ef91c700490731f76022acbd Mon Sep 17 00:00:00 2001 From: HareshWed Date: Sat, 31 May 2025 20:11:33 -0500 Subject: [PATCH 1/4] Delete alert box for error. Changed to reload to courses when deleting course --- src/pages/courses/CourseCard.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/courses/CourseCard.jsx b/src/pages/courses/CourseCard.jsx index 59f933a4..989da6b4 100644 --- a/src/pages/courses/CourseCard.jsx +++ b/src/pages/courses/CourseCard.jsx @@ -153,7 +153,7 @@ const CourseCard = ({ console.error('Failed to delete course:', data.error || data.message); return; } - navigate(`/courses`); + navigate('/courses'); // Optionally trigger a re-fetch or remove the course from UI state } catch (err) { console.error('Error deleting course:', err); From ebe6c6c87b53831fd7435b083725ea60a3b0621b Mon Sep 17 00:00:00 2001 From: HareshWed Date: Sun, 15 Jun 2025 14:41:55 -0500 Subject: [PATCH 2/4] Updating environment variable template before transfer --- .env.example | 1 + 1 file changed, 1 insertion(+) diff --git a/.env.example b/.env.example index 449cb7e2..1e78b3fe 100644 --- a/.env.example +++ b/.env.example @@ -1 +1,2 @@ +PORT=3001 REACT_APP_BACKEND_URL=http://localhost:5050 \ No newline at end of file From 369a26a4fbff9c3d5730d0b5f1e1c55e645da6e4 Mon Sep 17 00:00:00 2001 From: HareshWed Date: Sun, 15 Jun 2025 16:02:58 -0500 Subject: [PATCH 3/4] Adding transfer docs --- TASKS.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 TASKS.md diff --git a/TASKS.md b/TASKS.md new file mode 100644 index 00000000..27301276 --- /dev/null +++ b/TASKS.md @@ -0,0 +1,11 @@ +# Project Task Board + +The following touches on future possible tasks for the frontend. + +## 🕒 Future Work +- [ ] Translating entire website to Spanish +- [ ] Implementing events features +- [ ] Use calendar to help user keep track of upcoming courses and events +- [ ] Fixed delayed login response of website +- [ ] Fix occasional alert error when deleting course +- [ ] Fix logging in errors without Google From e8ef477f351d36884afa8b3efd6df7517a2f145c Mon Sep 17 00:00:00 2001 From: HareshWed Date: Sun, 15 Jun 2025 16:10:19 -0500 Subject: [PATCH 4/4] Adding transfer docs --- CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..46befcf3 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,13 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +## [v1.0] – 2025-06-15 - Final Client Release +The current version is what Sokana Collective will receive from DISC. + +This version implements the following features: +- User Signing up and logging in +- User registration for in person, virtual, and online courses +- Admin uploading, editing, and deleting courses +- Online course preview for those who have not purchased those courses +- Filtering Course by type(Online, Virtual, In person) and language (Spanish, English) \ No newline at end of file