-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: hotfix to post-submit page for new ida #157
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #157 +/- ##
==========================================
+ Coverage 94.29% 94.31% +0.02%
==========================================
Files 68 68
Lines 1086 1090 +4
Branches 299 302 +3
==========================================
+ Hits 1024 1028 +4
Misses 57 57
Partials 5 5 ☔ View full report in Codecov by Sentry. |
case ExamType.PROCTORED: | ||
return <VerifiedProctoredExamInstructions />; | ||
case ExamType.PRACTICE: | ||
return <VerifiedProctoredExamInstructions />; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: Just for clarity, this could be written as:
case ExamType.PROCTORED: | |
return <VerifiedProctoredExamInstructions />; | |
case ExamType.PRACTICE: | |
return <VerifiedProctoredExamInstructions />; | |
case ExamType.PRACTICE: | |
case ExamType.PROCTORED: | |
return <VerifiedProctoredExamInstructions />; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
🎉 This PR is included in version 3.2.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
https://2u-internal.atlassian.net/browse/COSMO-530
After completing a Practice Proctoring exam with an LTI provider. Reloading the page or navigating to the Dashboard and back to the exam an emtpy-ish page is shown instead of the usual landing.
I found that this is due to us not having a component that loads for Practice Exams for attempts in the "verified" or "rejected" state. I copied over the Verified/RejectedProctoredExamInstructions components to be loaded in the case that the exam's type is
PRACTICE
& we're using the new exams ida as a hotfix.