fix: [AA-1018] api cleanup

Back off change to fetchCourse in courseware/thunks.js
This commit is contained in:
Chris Deery
2022-01-25 14:42:15 -05:00
parent f907c588c9
commit 3b33aacb3d

View File

@@ -140,10 +140,7 @@ export function fetchCourse(courseId) {
if (courseMetadataResult.status === 'fulfilled') {
dispatch(addModel({
modelType: 'coursewareMeta',
model: {
id: courseId,
...courseMetadataResult.value,
},
model: courseMetadataResult.value,
}));
}