Skip to content

Commit

Permalink
cleanup unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Brad committed Sep 25, 2023
1 parent 8f374cb commit fd03138
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 6 deletions.
2 changes: 0 additions & 2 deletions client/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ import HealthCheck from './pages/HealthCheck';
import SecretPassword from './pages/SecretPassword';
import UserWelcome from './pages/UserWelcome';

import ProjectForm from './components/ProjectForm';

import { ThemeProvider } from '@mui/material';
import theme from './theme';

Expand Down
1 change: 0 additions & 1 deletion client/src/components/ProjectForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { Redirect } from 'react-router-dom';
import {
Typography,
Box,
Divider,
Button,
Grid,
Radio,
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/manageProjects/editProject.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import TitledBox from '../parts/boxes/TitledBox';
import { ReactComponent as EditIcon } from '../../svg/Icon_Edit.svg';
import { ReactComponent as PlusIcon } from '../../svg/PlusIcon.svg';

import { Typography, Box, Divider } from '@mui/material';
import { Typography, Box } from '@mui/material';

// Need to hold user state to check which type of user they are and conditionally render editing fields in this component
// for user level block access to all except for the ones checked
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import validator from 'validator';
import { isWordInArrayInString } from './../../../utils/stringUtils.js';
import { el } from 'date-fns/locale';

const validateEventForm = (vals, projectToEdit) => {
let newErrors = {};
Expand Down
1 change: 0 additions & 1 deletion client/src/pages/ProjectList.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import {
Box,
CircularProgress,
Typography,
Divider,
Button,
} from '@mui/material';
import { Link } from 'react-router-dom';
Expand Down

0 comments on commit fd03138

Please sign in to comment.