Skip to content

Commit

Permalink
refactor: remove unused imports and vars
Browse files Browse the repository at this point in the history
  • Loading branch information
procaconsul committed Jul 25, 2024
1 parent 80404d2 commit faa2b36
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/components/Selection/UserSelector.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { CheckIcon, ChevronDownIcon, ChevronUpIcon } from '@radix-ui/react-icons'
import { Select } from '@radix-ui/themes'
import React, { ComponentProps, useCallback } from 'react'
import React, { useCallback } from 'react'
import { matchPath, useLocation, useNavigate, useParams } from 'react-router-dom'

import { DEFAULT_TEST_USERNAME } from '../../utils/globalConstants'
Expand Down
4 changes: 2 additions & 2 deletions src/pages/MarkingPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import QuestionHeader from './QuestionHeader'
const MarkingPage: FC = () => {
const { username = DEFAULT_TEST_USERNAME } = useParams()
const { questions, questionsAreLoaded } = useQuestions()
const { lookupAnswer, answersAreLoaded } = useStudentAnswers(username)
const { lookupMark, saveMark, marksAreLoaded } = useStudentMarks(username)
const { lookupAnswer } = useStudentAnswers(username)
const { lookupMark, saveMark } = useStudentMarks(username)

const handler = (v) => {}

Expand Down

0 comments on commit faa2b36

Please sign in to comment.