stream_create.js: Fix function call by removing unnecessary parameter.

The parameter was not being passed because
`report_already_exists` takes no parameters.
This commit is contained in:
sanchi-t 2024-01-18 18:16:03 +05:30 committed by Tim Abbott
parent e5c92a1ee6
commit 7eb34529e6
1 changed files with 1 additions and 1 deletions

View File

@ -290,7 +290,7 @@ function create_stream() {
// with i18n. And likely we should be reporting the
// error text directly rather than turning it into
// "Error creating stream"?
stream_name_error.report_already_exists(stream_name);
stream_name_error.report_already_exists();
stream_name_error.select();
}