diff --git a/src/instructions/VerifiedInstructions.jsx b/src/instructions/VerifiedInstructions.jsx
index 0f85dd74..bedbe374 100644
--- a/src/instructions/VerifiedInstructions.jsx
+++ b/src/instructions/VerifiedInstructions.jsx
@@ -9,12 +9,12 @@ import Footer from './proctored_exam/Footer';
const VerifiedExamInstructions = ({ examType }) => {
const renderInstructions = () => {
switch (examType) {
- case ExamType.ONBOARDING:
- return ;
- case ExamType.PRACTICE:
- return ;
case ExamType.PROCTORED:
return ;
+ case ExamType.PRACTICE:
+ return ;
+ case ExamType.ONBOARDING:
+ return ;
default:
return null;
}