Update confirmation message for deleting a user in ProjectMembers component

This commit is contained in:
Davenludd 2024-04-09 20:57:22 +02:00
parent 5e104ec7f9
commit 56e566ea9b

View file

@ -53,7 +53,7 @@ function ProjectMembers(): JSX.Element {
className="underline cursor-pointer font-bold"
onClick={() => {
confirm(
"Are you sure you want to delete this user?",
"Are you sure you want to delete this user? This action cannot be undone.",
) &&
void handleUserDeleteClick(projectMember.Username);
}}