File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import media from '../../lib/styles/media';
12
12
export type SettingRowsProps = {
13
13
title : string | null ;
14
14
username : string ;
15
+ email : string ;
15
16
onUpdateTitle : ( title : string ) => Promise < any > ;
16
17
onUpdateSocialInfo : ( profileLinks : ProfileLinks ) => Promise < any > ;
17
18
onUpdateEmailRules : ( params : {
@@ -38,6 +39,7 @@ function SettingRows({
38
39
username,
39
40
profileLinks,
40
41
userMeta,
42
+ email,
41
43
onUpdateTitle,
42
44
onUpdateSocialInfo,
43
45
onUpdateEmailRules,
@@ -54,7 +56,7 @@ function SettingRows({
54
56
title = "이메일 주소"
55
57
description = "회원 인증 또는 시스템에서 발송하는 이메일을 수신하는 주소입니다."
56
58
>
57
-
59
+ { email }
58
60
</ SettingRow >
59
61
{ userMeta && (
60
62
< SettingEmailRulesRow
Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ function SettingRowsContainer(props: SettingRowsContainerProps) {
40
40
< SettingRows
41
41
title = { velogConfig . title }
42
42
username = { user . username }
43
+ email = { user . email }
43
44
onUpdateTitle = { updateTitle }
44
45
profileLinks = { profile . profile_links }
45
46
onUpdateSocialInfo = { updateSocialInfo . update }
You can’t perform that action at this time.
0 commit comments