This is an automated email from the ASF dual-hosted git repository.
SBIN2010 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new fe484f6bb28 fix(UserListModal): Success notification mentions user and
not group (#40284)
fe484f6bb28 is described below
commit fe484f6bb283e173d0246e3455f2ae29a2d63264
Author: xavier-GitHub76 <[email protected]>
AuthorDate: Sun May 24 23:03:14 2026 +0200
fix(UserListModal): Success notification mentions user and not group
(#40284)
---
superset-frontend/src/features/users/UserListModal.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/superset-frontend/src/features/users/UserListModal.tsx
b/superset-frontend/src/features/users/UserListModal.tsx
index 1b66752d7f1..65f6e4efac3 100644
--- a/superset-frontend/src/features/users/UserListModal.tsx
+++ b/superset-frontend/src/features/users/UserListModal.tsx
@@ -94,7 +94,7 @@ function UserListModal({
} else {
try {
await createUser(values);
- addSuccessToast(t('The group has been created successfully.'));
+ addSuccessToast(t('The user has been created successfully.'));
} catch (err) {
await handleError(err, Actions.CREATE);
}