diff --git a/client/src/components/LoginForm.jsx b/client/src/components/LoginForm.jsx index abe93f7..7b41884 100644 --- a/client/src/components/LoginForm.jsx +++ b/client/src/components/LoginForm.jsx @@ -3,7 +3,7 @@ import { Link } from 'react-router-dom'; import { Box, Checkbox, FormControlLabel, Typography } from '@mui/material'; import Form from '../Form'; -import { FormSubmit, FormTextField } from '../StyledElements'; +import { FormSubmit, FormTextField } from './StyledElements'; function Login({ form, diff --git a/client/src/components/RecoverForm.jsx b/client/src/components/RecoverForm.jsx index cace567..68fb10a 100644 --- a/client/src/components/RecoverForm.jsx +++ b/client/src/components/RecoverForm.jsx @@ -1,7 +1,7 @@ import React from 'react'; import { Box, Typography } from '@mui/material'; -import { FormSubmit, FormTextField } from '../StyledElements'; +import { FormSubmit, FormTextField } from './StyledElements'; function RecoverForm({ form, error, success, handleSubmit, handleChange }) { return ( diff --git a/client/src/components/RegisterForm.jsx b/client/src/components/RegisterForm.jsx index 9aad97a..4441cdb 100644 --- a/client/src/components/RegisterForm.jsx +++ b/client/src/components/RegisterForm.jsx @@ -3,7 +3,7 @@ import { Link } from 'react-router-dom'; import { Box, TextField, Typography } from '@mui/material'; import Form from '../Form'; -import { FormSubmit, FormTextField } from '../StyledElements'; +import { FormSubmit, FormTextField } from './StyledElements'; function RegisterForm({ form, handleSubmit, handleChange, error }) { return ( diff --git a/client/src/components/ResetForm.jsx b/client/src/components/ResetForm.jsx index c26d419..26cb881 100644 --- a/client/src/components/ResetForm.jsx +++ b/client/src/components/ResetForm.jsx @@ -1,7 +1,7 @@ import React from 'react'; import { Box, Typography } from '@mui/material'; -import { FormSubmit, FormTextField } from '../StyledElements'; +import { FormSubmit, FormTextField } from './StyledElements'; function ResetForm({ form, handleSubmit, handleChange, error }) { return ( diff --git a/client/src/components/UpdateOrganizationForm.jsx b/client/src/components/UpdateOrganizationForm.jsx index 455e74f..34129d8 100644 --- a/client/src/components/UpdateOrganizationForm.jsx +++ b/client/src/components/UpdateOrganizationForm.jsx @@ -2,7 +2,7 @@ import React from 'react'; import { Typography } from '@mui/material'; import Form from '../Form'; -import { FormSubmit, FormTextField } from '../StyledElements'; +import { FormSubmit, FormTextField } from './StyledElements'; function UpdateOrganizationForm({ name, handleSubmit, handleChange }) { return (