user-groups: Remove banner shown on successful group creation.

There is no need to show the banner on successful group creation
as we anyways open the settings page of newly created group.
This commit is contained in:
Sahil Batra 2023-11-30 15:03:13 +05:30 committed by Tim Abbott
parent f84857959c
commit 728737ef0e
1 changed files with 0 additions and 4 deletions

View File

@ -139,10 +139,6 @@ function create_user_group() {
$("#create_user_group_name").val("");
$("#create_user_group_description").val("");
user_group_create_members.clear_member_list();
ui_report.success(
$t_html({defaultMessage: "User group successfully created!"}),
$(".user_group_create_info"),
);
loading.destroy_indicator($("#user_group_creating_indicator"));
// TODO: The rest of the work should be done via the create event we will get for user group.
},