onboarding: Remove <b> from the headings of introduce zulip view modals.

This commit removes bold from the heading of:
* introduce inbox view modal
* introduce recent conversations view modal
This commit is contained in:
Prakhar Pratyush
2025-07-31 09:16:24 +05:30
committed by Tim Abbott
parent d73397a221
commit 4070f5e512
2 changed files with 2 additions and 2 deletions

View File

@@ -379,7 +379,7 @@ export function show(filter?: Filter): void {
user_settings.web_escape_navigates_to_home_view,
});
dialog_widget.launch({
html_heading: $t_html({defaultMessage: "Welcome to your <b>inbox</b>!"}),
html_heading: $t_html({defaultMessage: "Welcome to your inbox!"}),
html_body,
html_submit_button: $t_html({defaultMessage: "Got it"}),
on_click() {

View File

@@ -1443,7 +1443,7 @@ export function show(): void {
user_settings.web_escape_navigates_to_home_view,
});
dialog_widget.launch({
html_heading: $t_html({defaultMessage: "Welcome to <b>recent conversations</b>!"}),
html_heading: $t_html({defaultMessage: "Welcome to recent conversations!"}),
html_body,
html_submit_button: $t_html({defaultMessage: "Got it"}),
on_click() {