Skip to content

Commit

Permalink
bugfix for circle request
Browse files Browse the repository at this point in the history
  • Loading branch information
zavarin-michael authored Sep 1, 2023
1 parent 3517d5f commit 333290d
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ import styles from './styles/styles.module.scss'
import { Button } from '@domains/common/components/button'
import { useCreateStudentFormValidators } from './hooks'
import { useOrganization } from '@domains/organization/providers/organizationProvider'
import { useGetAllCirclesQuery, useInviteStudentMutation } from '@domains/circle/redux/circleApi'
import { useInviteStudentMutation } from '@domains/circle/redux/circleApi'
import { useGetAllCirclesQuery } from '@domains/organization/redux/organizationApi';
import { isValidFormCheck } from '@domains/common/utils/form'
import {
CIRCLES,
Expand All @@ -25,7 +26,7 @@ export const CreateStudentForm = () => {
const { organization } = useOrganization()
const [mutation] = useInviteStudentMutation()
const circlesData = useGetAllCirclesQuery({
organization: organization.id,
organization_id: organization.id,
})

const validationCheck = () => {
Expand Down

0 comments on commit 333290d

Please sign in to comment.