Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alangsto committed Feb 2, 2024
1 parent d53cebe commit c9e9715
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/core/OuterExamTimer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import PropTypes from 'prop-types';
import { AppContext } from '@edx/frontend-platform/react';
import { ExamTimerBlock } from '../timer';
import ExamAPIError from '../exam/ExamAPIError';
import { getLatestAttemptData } from '../data/thunks';
import { getLatestAttemptData } from '../data';
import { IS_STARTED_STATUS } from '../constants';

const ExamTimer = ({ courseId }) => {
Expand Down
1 change: 1 addition & 0 deletions src/data/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export {
resetExam,
getAllowProctoringOptOut,
examRequiresAccessToken,
checkExamEntry,
} from './thunks';

export {
Expand Down
2 changes: 1 addition & 1 deletion src/exam/Exam.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Instructions from '../instructions';
import ExamAPIError from './ExamAPIError';
import { ExamStatus, ExamType, IS_STARTED_STATUS } from '../constants';
import messages from './messages';
import { getProctoringSettings } from '../data/thunks';
import { getProctoringSettings } from '../data';

/**
* Exam component is intended to render exam instructions before and after exam.
Expand Down
2 changes: 1 addition & 1 deletion src/exam/ExamWrapper.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
getExamAttemptsData,
getAllowProctoringOptOut,
checkExamEntry,
} from '../data/thunks';
} from '../data';

/**
* Exam wrapper is responsible for triggering initial exam data fetching and rendering Exam.
Expand Down

0 comments on commit c9e9715

Please sign in to comment.