Skip to content

Commit 9008384

Browse files
fix: 코드리뷰 반영
1 parent f1ecd8a commit 9008384

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

apps/client/src/layout/Layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ const Layout = () => {
1010
location.pathname === ROUTES_CONFIG.termsOfService.path;
1111

1212
const isSidebarHidden =
13-
location.pathname.startsWith('/onboarding') ||
14-
location.pathname.startsWith('/login') ||
13+
location.pathname.startsWith(ROUTES_CONFIG.onBoarding.path) ||
14+
location.pathname.startsWith(ROUTES_CONFIG.login.path) ||
1515
isPolicyPage;
1616

1717
return (

apps/client/src/pages/policy/TermsOfService.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,9 @@ const TermsOfService = () => {
176176
서비스의 소스코드, 알고리즘 등을 분석·변조·역컴파일하는 행위
177177
</li>
178178
<li>확장프로그램을 임의 변조하거나 재배포하는 행위</li>
179-
<li>브라우저 또는 보안 정책을 우회하여 확장프로그</li>
179+
<li>
180+
브라우저 또는 보안 정책을 우회하여 확장프로그램을 사용하는 행위
181+
</li>
180182
</ol>
181183
<p className="text-font-gray-2 caption1-m mt-[1.2rem]">
182184
위 행위가 확인될 경우 서비스는 이용 제한, 콘텐츠 삭제, 계정 해지

0 commit comments

Comments
 (0)