diff --git a/src/client/components/InteractiveForm/RenderAIQuestion.tsx b/src/client/components/InteractiveForm/RenderAIQuestion.tsx index a423d20d..38384697 100644 --- a/src/client/components/InteractiveForm/RenderAIQuestion.tsx +++ b/src/client/components/InteractiveForm/RenderAIQuestion.tsx @@ -1,11 +1,5 @@ import React from 'react' -import { - Box, - Container, - FormControlLabel, - Switch, - TextField, -} from '@mui/material' +import { Box, FormControlLabel, Switch, TextField } from '@mui/material' import { Controller } from 'react-hook-form' import { useTranslation } from 'react-i18next' import { useLocation } from 'react-router-dom' @@ -29,7 +23,7 @@ const RenderAIQuestion = ({ control }: InputProps) => { if (location.pathname === '/public') return null return ( - + {t('AIquestion:title')} {t('AIquestion:text')} @@ -68,7 +62,7 @@ const RenderAIQuestion = ({ control }: InputProps) => { )} /> - + ) }