diff --git a/src/components/SelectLang/index.js b/src/components/SelectLang/index.js
index 5e1d6fa3..f6abe2f2 100644
--- a/src/components/SelectLang/index.js
+++ b/src/components/SelectLang/index.js
@@ -13,18 +13,18 @@ export default class SelectLang extends PureComponent {
render() {
const { className } = this.props;
const selectedLang = getLocale();
- const locales = ["zh-CN", "zh-TW", "en-US", "pt-BR"];
+ const locales = ['zh-CN', 'zh-TW', 'en-US', 'pt-BR'];
const languageLabels = {
- "zh-CN": "简体中文",
- "zh-TW": "繁体中文",
- "en-US": "English",
- "pt-BR": "Português",
+ 'zh-CN': '简体中文',
+ 'zh-TW': '繁体中文',
+ 'en-US': 'English',
+ 'pt-BR': 'Português',
};
const languageIcons = {
- "zh-CN": "🇨🇳",
- "zh-TW": "🇭🇰",
- "en-US": "🇬🇧",
- "pt-BR": "🇵🇹",
+ 'zh-CN': '🇨🇳',
+ 'zh-TW': '🇭🇰',
+ 'en-US': '🇬🇧',
+ 'pt-BR': '🇧🇷',
};
const langMenu = (