Skip to content

Commit 1e5e5a9

Browse files
fix: lint
1 parent ef0e4e2 commit 1e5e5a9

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed

src/views/SelfAssessmentView/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22

3-
import { useIsORAConfigLoaded, usePageData } from 'data/services/lms/hooks/selectors';
3+
import { useIsORAConfigLoaded } from 'data/services/lms/hooks/selectors';
44

55
import AssessmentContentLayout from './AssessmentContentLayout';
66
import AssessmentActions from './AssessmentActions';

src/views/StudentTrainingView/index.jsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import React from 'react';
22

3-
import { FullscreenModal } from '@edx/paragon';
4-
5-
import { useIsORAConfigLoaded, usePageData } from 'data/services/lms/hooks/selectors';
3+
import { useIsORAConfigLoaded } from 'data/services/lms/hooks/selectors';
64

75
import AssessmentContentLayout from './AssessmentContentLayout';
86
import AssessmentActions from './AssessmentActions';

src/views/XBlockView/index.jsx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
import React from 'react';
22

3-
export const XBlockView = () => {
4-
return (
5-
<div>XBlock View</div>
6-
)
7-
};
3+
export const XBlockView = () => (
4+
<div>XBlock View</div>
5+
);
86

9-
export default XBlockView
7+
export default XBlockView;

0 commit comments

Comments
 (0)