diff --git a/backend/web/login/login.py b/backend/web/login/login.py
index 6f86ccf9e25d313306cd355d5fb93a412e6219de..12d4ff1aecaa1aa69fc960ff9033aa30b09006bf 100644
--- a/backend/web/login/login.py
+++ b/backend/web/login/login.py
@@ -4,8 +4,6 @@ Hydra for OIDC sessions and MariaDB for application and role specifications.
 The application provides also several command line options to interact with
 the user entries in the database(s)"""
 
-# 2022-02-22-20:22
-
 import urllib.parse
 import urllib.request
 import ast
diff --git a/frontend/src/components/UserModal/UserModal.tsx b/frontend/src/components/UserModal/UserModal.tsx
index 3a8dda5852f0c366261afc2f12e8ab961bcbe655..38830ea4eb9d9432db4f2b3e88bf8cebde110da6 100644
--- a/frontend/src/components/UserModal/UserModal.tsx
+++ b/frontend/src/components/UserModal/UserModal.tsx
@@ -13,9 +13,6 @@ import { UserModalProps } from './types';
 export const UserModal = ({ open, onClose, userId, setUserId }: UserModalProps) => {
   const [deleteModal, setDeleteModal] = useState(false);
   const [passwordLinkModal, setPasswordLinkModal] = useState(false);
-  // const [passwordLinkBody, setPasswordLinkBody] = useState({
-  //   value: 'start',
-  // });
   const [isAdminRoleSelected, setAdminRoleSelected] = useState(true);
   const [isPersonalModal, setPersonalModal] = useState(false);
   const {
@@ -117,9 +114,6 @@ export const UserModal = ({ open, onClose, userId, setUserId }: UserModalProps)
   const passwordLinkModalOpen = () => {
     if (userId) {
       getRecoveryLinkUserById(userId);
-      // setPasswordLinkBody({
-      //   value: userId,
-      // });
     }
     setPasswordLinkModal(true);
   };