diff --git a/src/pages/administrative/general.tsx b/src/pages/administrative/general.tsx index 1ffacd2..aa7950a 100644 --- a/src/pages/administrative/general.tsx +++ b/src/pages/administrative/general.tsx @@ -24,20 +24,14 @@ export default function index({userName}: any) { console.log(editorRef.current.getContent()); } }; - - - const handleChange = (event: SelectChangeEvent) => { setText(event.target.value); }; - - async function handleRegisterAboutUs() { await api.post('/aboutUs', { about: editorRef.current.value }).then(res => { console.log(res) - }).catch(res => console.log(res)) }