zahmis 5 년 전
부모
커밋
6f003c94a5
2개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      src/client/js/components/Page/DuplicatedAlert.jsx
  2. 1 0
      src/client/js/components/Page/RedirectedAlert.jsx

+ 0 - 1
src/client/js/components/Page/DuplicatedAlert.jsx

@@ -5,7 +5,6 @@ import { withTranslation } from 'react-i18next';
 
 const DuplicatedAlert = (props) => {
   const { t } = props;
-
   const urlParams = new URLSearchParams(window.location.search);
   const fromPath = urlParams.get('duplicated');
 

+ 1 - 0
src/client/js/components/Page/RedirectedAlert.jsx

@@ -7,6 +7,7 @@ const RedirectedAlert = (props) => {
   const { t } = props;
   const urlParams = new URLSearchParams(window.location.search);
   const fromPath = urlParams.get('redirectFrom');
+
   return (
     <>
       <strong>{ t('Redirected') }:</strong>{ t('page_page.notice.redirected')} <code>{fromPath}</code> {t('page_page.notice.redirected_period')}