Skip to content

Commit

Permalink
remove unsued imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jadmsaadaot committed Aug 3, 2023
1 parent 1f261ad commit 81f0dee
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useContext } from 'react';
import { Divider, Grid } from '@mui/material';
import { MetHeader3, PrimaryButton } from 'components/common';
import { PrimaryButton } from 'components/common';
import { WidgetDrawerContext } from '../WidgetDrawerContext';
import CreateFolderForm from './CreateFolderForm';
import DocumentsBlock from './DocumentsBlock';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useContext } from 'react';
import { Grid, Divider } from '@mui/material';
import { PrimaryButton, MetHeader3, WidgetButton } from 'components/common';
import { PrimaryButton, WidgetButton } from 'components/common';
import { WidgetDrawerContext } from '../WidgetDrawerContext';
import { EventsContext } from './EventsContext';
import EventsInfoBlock from './EventsInfoBlock';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import React, { useContext, useState, useEffect } from 'react';
import Divider from '@mui/material/Divider';
import { Grid, Typography, Stack, IconButton } from '@mui/material';
import {
MetHeader3,
MetLabel,
PrimaryButton,
SecondaryButton,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useContext, useEffect, useState } from 'react';
import { Autocomplete, Checkbox, Divider, FormControl, FormControlLabel, Grid, TextField } from '@mui/material';
import { MetHeader3, MetLabel, PrimaryButton, SecondaryButton } from 'components/common';
import { MetLabel, PrimaryButton, SecondaryButton } from 'components/common';
import { EngagementPhases } from 'models/engagementPhases';
import { useAppDispatch } from 'hooks';
import { openNotification } from 'services/notificationService/notificationSlice';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,7 @@
import React, { useContext, useEffect } from 'react';
import Divider from '@mui/material/Divider';
import { Grid } from '@mui/material';
import {
MetDescription,
MetHeader3,
MetLabel,
MidScreenLoader,
PrimaryButton,
SecondaryButton,
} from 'components/common';
import { MetDescription, MetLabel, MidScreenLoader, PrimaryButton, SecondaryButton } from 'components/common';
import { useForm, FormProvider, SubmitHandler } from 'react-hook-form';
import { yupResolver } from '@hookform/resolvers/yup';
import * as yup from 'yup';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useContext, useState, useEffect } from 'react';
import { Autocomplete, Grid, TextField, Divider } from '@mui/material';
import { MetLabel, PrimaryButton, SecondaryButton, MetHeader3 } from 'components/common';
import { MetLabel, PrimaryButton, SecondaryButton } from 'components/common';
import { Contact } from 'models/contact';
import { useAppDispatch } from 'hooks';
import { openNotification } from 'services/notificationService/notificationSlice';
Expand Down

0 comments on commit 81f0dee

Please sign in to comment.