Skip to content

Commit fd98ce3

Browse files
committed
fix: shows facebook error description below social login
1 parent 91d9e58 commit fd98ce3

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

src/components/auth/AuthForm.tsx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,13 @@ const AuthFormBlock = styled.div`
5656
}
5757
`;
5858

59+
const Warning = styled.div`
60+
margin-top: 1rem;
61+
margin-bottom: 1rem;
62+
font-size: 0.875rem;
63+
color: ${themedPalette.text3};
64+
`;
65+
5966
export interface AuthFormProps {
6067
mode: AuthMode;
6168
loading: boolean;
@@ -101,6 +108,12 @@ const AuthForm: React.FC<AuthFormProps> = ({
101108
<section>
102109
<h4>소셜 계정으로 {modeText}</h4>
103110
<AuthSocialButtonGroup currentPath={currentPath} />
111+
<Warning>
112+
현재 페이스북 로그인이 정상적으로 작동하지 않으며 고치는중에
113+
있습니다. 페이스북 계정과 같은 이메일로 로그인을 시도하시거나, 해당
114+
계정에 이메일이 설정되어 있지 않다면 [email protected]로 문의 메일을
115+
보내주세요.
116+
</Warning>
104117
</section>
105118
</div>
106119
<div className="foot">

src/components/auth/AuthModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const AuthModalBlock = styled.div<{ visible: boolean }>`
2121
z-index: ${zIndexes.AuthModal};
2222
.wrapper {
2323
width: 606px;
24-
height: 480px;
24+
height: 530px;
2525
${media.small} {
2626
flex: 1;
2727
width: auto;

0 commit comments

Comments
 (0)