diff --git a/frontend_reactjs/src/pages/Settings.tsx b/frontend_reactjs/src/pages/Settings.tsx
index cf33153..48f9731 100644
--- a/frontend_reactjs/src/pages/Settings.tsx
+++ b/frontend_reactjs/src/pages/Settings.tsx
@@ -9,8 +9,6 @@ export default function Settings() {
 
     const { roles } = useRoles()
 
-    const [open, setOpen] = useState(false)
-
     const columns: GridColDef[] = [
         { field: 'id', headerName: 'ID', type: "number", width: 70 },
         { field: 'email', headerName: 'Email', width: 130, editable: true },
@@ -45,10 +43,6 @@ export default function Settings() {
             gap: "16px",
         }}
         >
-            <Button onClick={() => setOpen(true)}>
-                Добавить пользователя
-            </Button>
-
             <DataGrid
                 autoHeight
                 style={{ width: "100%" }}