Skip to content
This repository has been archived by the owner on Mar 3, 2024. It is now read-only.

Commit

Permalink
fix ts
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksandrKamlykov committed Mar 3, 2024
1 parent fc1b60e commit 9b0f19e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Frontend/src/features/createActivity/ui/CreateActivity.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FC, useEffect, useMemo, useState } from "react";
import { FC, useEffect, useState } from "react";
import { ModalData } from "../../../shared/model/adminTypes.ts";
import {
Button,
Expand Down Expand Up @@ -27,8 +27,7 @@ const CreateActivity: FC<ModalData> = ({ open, hideModal }) => {
const visible = open === ModalKey.CreateActivity;
const { groups, fetchGroups, groupsLoading } = useGroups();
const { createActivity, createActivityLoading } = useCreateActivity();
const { students, fetchStudents, studentsLoading, clearStudents } =
useStudents();
const { students, fetchStudents } = useStudents();
const { subjects, fetchSubjects } = useSubjects();
const { activityTypes, fetchActivityTypes } = useActiviesType();
const [groupId, setGroupId] = useState<number>();
Expand Down

0 comments on commit 9b0f19e

Please sign in to comment.