zahmis 5 лет назад
Родитель
Сommit
aec9ab2af6
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      src/client/js/components/Page/RenamedAlert.jsx

+ 3 - 3
src/client/js/components/Page/RenamedAlert.jsx

@@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
 import { withTranslation } from 'react-i18next';
 
 
-const DuplicatedAlert = (props) => {
+const RenamedAlert = (props) => {
   const { t } = props;
 
   return (
@@ -13,8 +13,8 @@ const DuplicatedAlert = (props) => {
   );
 };
 
-DuplicatedAlert.propTypes = {
+RenamedAlert.propTypes = {
   t: PropTypes.func.isRequired, // i18next
 };
 
-export default withTranslation()(DuplicatedAlert);
+export default withTranslation()(RenamedAlert);