Skip to content

Commit

Permalink
fixed naming of the interface (#2686)
Browse files Browse the repository at this point in the history
  • Loading branch information
markgol777 authored Nov 14, 2024
1 parent 25f9e27 commit 42ffd91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hooks/use-user-categories-and-subjects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ import {
UserResponse
} from '~/types'

interface useUserCategoriesAndSubjectsProps {
interface UseUserCategoriesAndSubjectsProps {
user: UserResponse | null
}

const useUserCategoriesAndSubjects = ({
user
}: useUserCategoriesAndSubjectsProps) => {
}: UseUserCategoriesAndSubjectsProps) => {
const { Subjects } = CourseAutocompleteOptionsEnum

const userCategories = useMemo(
Expand Down

0 comments on commit 42ffd91

Please sign in to comment.