feat: implement curriculum management system including automated generation, enrichment, and versioning workflows

This commit is contained in:
RaymondVerhoef
2026-05-24 19:50:20 +02:00
parent 8e01b21a50
commit c5e23c77cd
15 changed files with 1354 additions and 623 deletions

View File

@@ -23,8 +23,6 @@ function appReducer(state, action) {
return { ...state, currentUser: action.payload };
case 'LOGOUT':
return { ...state, currentUser: null };
case 'ADVANCE_WEEK':
return { ...state, weekNumber: state.weekNumber + 1 };
default:
return state;
}