Skip to content

Commit 859916b

Browse files
authored
fix: user deletion notification (#367)
1 parent 80ce7d2 commit 859916b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modules/users/table-cells/UserActionCell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default function UserActionCell({ user, serviceUser = false }: Props) {
2020
const deleteRule = async () => {
2121
const name = user.name || "User";
2222
notify({
23-
title: name + "deleted",
23+
title: `'${name}' deleted`,
2424
description: "User was successfully deleted.",
2525
promise: userRequest.del("", `/${user.id}`).then(() => {
2626
mutate(`/users?service_user=${serviceUser}`);

0 commit comments

Comments
 (0)