Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/deseng657 #2561

Merged
merged 6 commits into from
Jul 22, 2024
Merged
4 changes: 1 addition & 3 deletions met-web/src/components/engagement/new/create/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,6 @@ const EngagementCreationWizard = () => {

const handleLanguageEntries = (languages: Language[]) => {
return languages.map((language) => {
const languageWithDirection =
true === language.right_to_left ? language.name.split('').reverse().join('') : language.name;
return (
<>
<span>
Expand All @@ -134,7 +132,7 @@ const EngagementCreationWizard = () => {
value={language.code}
sx={{ pl: 0 }}
/>
{'English' === language.name ? language.name + ' (Required)' : languageWithDirection}
{'English' === language.name ? language.name + ' (Required)' : language.name}
</span>
<br />
</>
Expand Down
Loading