From e24f534d9b2a6618b8aa07d70cb76ffc4e46399e Mon Sep 17 00:00:00 2001 From: "DESKTOP-6E8S9S5\\LEE" Date: Tue, 16 Jun 2026 09:23:12 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B0=9C=EC=A0=84=EC=8B=9C=EB=AE=AC=EB=A0=88?= =?UTF-8?q?=EC=9D=B4=EC=85=98=20=ED=8C=9D=EC=97=85=EC=B0=BD=20=EC=98=A4?= =?UTF-8?q?=ED=94=88=20=EC=86=8C=EC=8A=A4=20=EB=B0=8F=20=EB=A9=94=EB=89=B4?= =?UTF-8?q?=20=EC=88=A8=EA=B9=80=EC=B2=98=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.local.dev | 1 - src/components/header/Header.jsx | 10 +++++----- src/styles/_layout.scss | 3 +++ 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.env.local.dev b/.env.local.dev index 8b31ac6e..e323559b 100644 --- a/.env.local.dev +++ b/.env.local.dev @@ -14,7 +14,6 @@ NEXT_PUBLIC_CONVERTER_API_URL="https://v2.convertapi.com/convert/dwg/to/png?Secr NEXT_PUBLIC_Q_ORDER_AUTO_LOGIN_URL="http://q-order-stg.q-cells.jp:8120/eos/login/autoLogin" NEXT_PUBLIC_Q_MUSUBI_AUTO_LOGIN_URL="http://q-musubi-stg.q-cells.jp:8120/qm/login/autoLogin" -NEXT_PUBLIC_ECONOMIC_SIMULATION_AUTH_URL="http://q-order-stg.q-cells.jp:8120/eos/simulation/auth" NEXT_PUBLIC_ECONOMIC_SIMULATION_URL="http://q-order-stg.q-cells.jp:8120/eos/simulation/list" # 테스트용 diff --git a/src/components/header/Header.jsx b/src/components/header/Header.jsx index 5fe0a9ba..558dc582 100644 --- a/src/components/header/Header.jsx +++ b/src/components/header/Header.jsx @@ -204,10 +204,10 @@ export default function Header(props) { ], }, { id: 8, name: 'qna.title', url: '/community/qna', children: [] }, - ...(process.env.NEXT_PUBLIC_RUN_MODE !== 'production' - ? [{ id: 9, name: 'header.menus.economic.simulation', action: openEconomicSimulation, children: [] }] - : []), - ] + process.env.NEXT_PUBLIC_RUN_MODE !== 'production' + ? { id: 9, name: 'header.menus.economic.simulation', action: openEconomicSimulation, children: [] } + : null, + ].filter(Boolean) const syncSession = useCallback(() => { setSessionState({ ...userSession }) @@ -258,7 +258,7 @@ export default function Header(props) { > {menu.children.length === 0 ? ( menu.action ? ( - ) : ( diff --git a/src/styles/_layout.scss b/src/styles/_layout.scss index 858ab351..e255cfbb 100644 --- a/src/styles/_layout.scss +++ b/src/styles/_layout.scss @@ -79,6 +79,9 @@ header{ background: url(/static/images/common/nav-arr.svg)no-repeat center; transition: all .17s ease-in-out; } + &.no-arrow:after{ + display: none; + } } &:last-child{ margin-right: 0; -- 2.47.2