stream_create: Remove banner shown on successful API request.

There was a banner showed on channel creation page on successful
completion of the API request, but we do not need that now since
we anyways move to a different UI, either the settings for the
created channel or to the message view narrowed to the new channel.
This commit is contained in:
Sahil Batra 2024-10-18 14:19:19 +05:30 committed by Tim Abbott
parent 916ddd4832
commit 77c1204d45
1 changed files with 0 additions and 4 deletions

View File

@ -348,10 +348,6 @@ function create_stream(): void {
success(): void {
$("#create_stream_name").val("");
$("#create_stream_description").val("");
ui_report.success(
$t_html({defaultMessage: "Channel successfully created!"}),
$(".stream_create_info"),
);
loading.destroy_indicator($("#stream_creating_indicator"));
// The rest of the work is done via the subscribe event we will get
},