summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoonhoekim <26rote@gmail.com>2025-11-18 21:07:47 +0900
committerjoonhoekim <26rote@gmail.com>2025-11-18 21:07:47 +0900
commit84277bd79bd6a2bff0f6ef6840f1790db06036e6 (patch)
tree0f949669dea44e71718c3f5dec32e3b19b0a3f35
parent8070b9428918d9ae5e03ad17eef6d403d2a7aaba (diff)
(김준회) 빌드 에러 수정: 41ad2455ac47d8e2da331d7240ded1354df9a784 (조건부 렌더링 이후 JSX 요소 없음)
-rw-r--r--components/login/login-form.tsx21
1 files changed, 11 insertions, 10 deletions
diff --git a/components/login/login-form.tsx b/components/login/login-form.tsx
index ee84add2..852909d1 100644
--- a/components/login/login-form.tsx
+++ b/components/login/login-form.tsx
@@ -949,18 +949,19 @@ export function LoginForm() {
</div>
{/* Terms - MFA 화면에서는 숨김 */}
+ {/* 1118 구매 파워유저 요구사항에 따라 삭제
{!showMfaForm && (
- // 1118 구매 파워유저 요구사항에 따라 삭제
- // <div className="text-balance text-center text-xs text-muted-foreground [&_a]:underline [&_a]:underline-offset-4 hover:[&_a]:text-primary">
- // {t("agreement")}{" "}
- // <Link
- // href={`/${lng}/privacy`}
- // className="underline underline-offset-4 hover:text-primary"
- // >
- // {t("privacyPolicy")}
- // </Link>
- // </div>
+ <div className="text-balance text-center text-xs text-muted-foreground [&_a]:underline [&_a]:underline-offset-4 hover:[&_a]:text-primary">
+ {t("agreement")}{" "}
+ <Link
+ href={`/${lng}/privacy`}
+ className="underline underline-offset-4 hover:text-primary"
+ >
+ {t("privacyPolicy")}
+ </Link>
+ </div>
)}
+ */}
</div>
</div>
</div>