diff --git a/web/src/components/layout/NoticeModal.js b/web/src/components/layout/NoticeModal.js index 626d8d17..9bb062a1 100644 --- a/web/src/components/layout/NoticeModal.js +++ b/web/src/components/layout/NoticeModal.js @@ -6,89 +6,89 @@ import { marked } from 'marked'; import { IllustrationNoContent, IllustrationNoContentDark } from '@douyinfe/semi-illustrations'; const NoticeModal = ({ visible, onClose, isMobile }) => { - const { t } = useTranslation(); - const [noticeContent, setNoticeContent] = useState(''); - const [loading, setLoading] = useState(false); + const { t } = useTranslation(); + const [noticeContent, setNoticeContent] = useState(''); + const [loading, setLoading] = useState(false); - const handleCloseTodayNotice = () => { - const today = new Date().toDateString(); - localStorage.setItem('notice_close_date', today); - onClose(); - }; + const handleCloseTodayNotice = () => { + const today = new Date().toDateString(); + localStorage.setItem('notice_close_date', today); + onClose(); + }; - const displayNotice = async () => { - setLoading(true); - try { - const res = await API.get('/api/notice'); - const { success, message, data } = res.data; - if (success) { - if (data !== '') { - const htmlNotice = marked.parse(data); - setNoticeContent(htmlNotice); - } else { - setNoticeContent(''); - } - } else { - showError(message); - } - } catch (error) { - showError(error.message); - } finally { - setLoading(false); + const displayNotice = async () => { + setLoading(true); + try { + const res = await API.get('/api/notice'); + const { success, message, data } = res.data; + if (success) { + if (data !== '') { + const htmlNotice = marked.parse(data); + setNoticeContent(htmlNotice); + } else { + setNoticeContent(''); } - }; + } else { + showError(message); + } + } catch (error) { + showError(error.message); + } finally { + setLoading(false); + } + }; - useEffect(() => { - if (visible) { - displayNotice(); - } - }, [visible]); + useEffect(() => { + if (visible) { + displayNotice(); + } + }, [visible]); - const renderContent = () => { - if (loading) { - return