diff --git a/src/App.tsx b/src/App.tsx
index 10cb92a..215f095 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -8,7 +8,6 @@ import Dashboard from './components/Dashboard';
import Projects from './components/projects/Projects';
import { ReactQueryDevtools} from 'react-query/devtools'
import ManageUsers from './components/manage_users/ManageUsers';
-import EditableTable from './components/manage_users/demo';
function App() {
const queryClient = new QueryClient();
@@ -21,7 +20,6 @@ function App() {
} />
} />
} />
- {/* } /> */}
diff --git a/src/components/manage_users/ManageUsers.tsx b/src/components/manage_users/ManageUsers.tsx
index 31e2e88..8db6bdb 100644
--- a/src/components/manage_users/ManageUsers.tsx
+++ b/src/components/manage_users/ManageUsers.tsx
@@ -20,6 +20,27 @@ import DeleteIcon from '@mui/icons-material/Delete';
import EditIcon from '@mui/icons-material/Edit';
import AddIcon from '@mui/icons-material/Add';
+const StyledTextField = (props:any) => (
+
+ );
+
interface Row {
id: number;
name: string;
@@ -120,136 +141,34 @@ export default function ManageUsers(){