chore(LoginForm.tsx): remove extra whitespace (#619)

chore(Translation.tsx): add default return statement for getTranslations function
chore(Eng.tsx): fix indentation, remove escaped apostrophe, and remove trailing whitespace
chore(Zh.tsx): fix indentation, remove escaped apostrophe, and remove trailing whitespace
This commit is contained in:
Danny Avila 2023-07-11 16:02:31 -04:00 committed by GitHub
parent 47e5493744
commit c17c1488ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 144 additions and 143 deletions

View file

@ -8,6 +8,7 @@ export const getTranslations = (langCode: string) => {
if (langCode === 'en') return English;
if (langCode === 'cn') return Chinese;
// === add conditionals here for additional languages here === //
return English; // default to English
};
// input: language code in string & phrase key in string