From c63c9d479e27ae1826cc9fddd9924487f473765f Mon Sep 17 00:00:00 2001 From: Martial BE Date: Sat, 13 Jan 2024 14:26:09 +0800 Subject: [PATCH] fix: home page & logo style issue --- web/berry/src/layout/MinimalLayout/index.js | 2 +- web/berry/src/ui-component/Logo.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web/berry/src/layout/MinimalLayout/index.js b/web/berry/src/layout/MinimalLayout/index.js index 084ee6ac..c2919c6d 100644 --- a/web/berry/src/layout/MinimalLayout/index.js +++ b/web/berry/src/layout/MinimalLayout/index.js @@ -26,7 +26,7 @@ const MinimalLayout = () => {
- + diff --git a/web/berry/src/ui-component/Logo.js b/web/berry/src/ui-component/Logo.js index 9c65825b..a34fe895 100644 --- a/web/berry/src/ui-component/Logo.js +++ b/web/berry/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;