Skip to content

Commit

Permalink
fix join
Browse files Browse the repository at this point in the history
  • Loading branch information
kyoungbinkim committed Feb 20, 2023
1 parent ef16859 commit 1ee4210
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/init.join.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const InitJoinJoin = ({ navigation }) => {
pkOwn : _.get(keys, 'pkOwn'),
pkEnc : _.get(keys, 'pkEnc'),
addr : _.get(keys, 'ena'),
EOA : address,
// EOA : address,
}

httpCli.post("/usr/join/join", JoinQuery).then(res =>{
Expand All @@ -62,7 +62,7 @@ const InitJoinJoin = ({ navigation }) => {
<View style={[styles.container]}>
<Text style={styles.text}>nickname : {nickname}</Text>
<Text style={styles.text}>sk_own : {sk_own}</Text>
<Text style={styles.text}>address : {address}</Text>
{/* <Text style={styles.text}>address : {address}</Text> */}
<CustomChipButton
containerStyle={styles.containerBt}
title={'Join'}
Expand Down
2 changes: 1 addition & 1 deletion src/components/init.join.nickname.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const InitJoinNickname = ({ navigation }) => {
try {
if(await joinQuery.nicknameCheck(nickname)){
dispathch(setNickname(nickname))
navigation.navigate('Join/addr')
navigation.navigate('Join/join')
}
else{
Alert.alert('닉네임을 다시 입력하시오')
Expand Down

0 comments on commit 1ee4210

Please sign in to comment.