From eaedd255efccb75369a7c98bbae8bb217786b58f Mon Sep 17 00:00:00 2001 From: MartialBE Date: Mon, 8 Jan 2024 21:29:18 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20home=20page=20&=20logo=20?= =?UTF-8?q?style=20issue?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/layout/MinimalLayout/index.js | 2 +- web/src/ui-component/Logo.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/layout/MinimalLayout/index.js b/web/src/layout/MinimalLayout/index.js index 084ee6ac..c2919c6d 100644 --- a/web/src/layout/MinimalLayout/index.js +++ b/web/src/layout/MinimalLayout/index.js @@ -26,7 +26,7 @@ const MinimalLayout = () => {
- + diff --git a/web/src/ui-component/Logo.js b/web/src/ui-component/Logo.js index 9c65825b..a34fe895 100644 --- a/web/src/ui-component/Logo.js +++ b/web/src/ui-component/Logo.js @@ -15,7 +15,7 @@ import { useSelector } from 'react-redux'; const Logo = () => { const siteInfo = useSelector((state) => state.siteInfo); - return {siteInfo.system_name}; + return {siteInfo.system_name}; }; export default Logo;