NavigationSteps: Rename setting_type_name to setting_type.

The trailing `_name` was redundant.
This commit is contained in:
Shubham Padia
2025-06-30 06:25:16 +00:00
committed by Tim Abbott
parent 2ba160ec19
commit aa98915371

View File

@@ -283,14 +283,14 @@ const relative_link_mapping: Record<
}; };
const getSettingsMarkdown = (setting_type_name: string, setting_name: string) => ` const getSettingsMarkdown = (setting_type: string, setting_name: string) => `
<ol> <ol>
<li> <li>
Click on the <b>gear</b> (${RawZulipIconGear}) icon in the upper Click on the <b>gear</b> (${RawZulipIconGear}) icon in the upper
right corner of the web or desktop app. right corner of the web or desktop app.
</li> </li>
<li> <li>
Select <b>${setting_type_name}</b>. Select <b>${setting_type}</b>.
</li> </li>
<li> <li>
On the left, click <b>${setting_name}</b>. On the left, click <b>${setting_name}</b>.