Skip to content

Commit

Permalink
Merge pull request #48 from SWM-FIRE/FIRE-307-fe-모달창-ui-수정
Browse files Browse the repository at this point in the history
FIRE-307 fix useState of newAvatar
  • Loading branch information
haryung-lee authored Jul 12, 2022
2 parents c6841f9 + 58776b7 commit 6d3e220
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/login/UserInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default function UserInput({
const navigate = useNavigate();
const { nickname, uid, avatar, setNickname, setUid, setAvatar } = UserStore();
const [newNickname, setNewNickname] = useState(nickname);
const [newAvatar, setNewAvatar] = useState('1');
const [newAvatar, setNewAvatar] = useState(avatar);
const getNewNickname = (newNickname) => {
setNewNickname(newNickname);
};
Expand Down

2 comments on commit 6d3e220

@vercel
Copy link

@vercel vercel bot commented on 6d3e220 Jul 12, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@haryung-lee is attempting to deploy a commit to the modoco Team on Vercel.

To accomplish this, @haryung-lee needs to request access to the Team.

Afterwards, an owner of the Team is required to accept their membership request.

If you're already a member of the respective Vercel Team, make sure that your Personal Vercel Account is connected to your GitHub account.

@vercel
Copy link

@vercel vercel bot commented on 6d3e220 Jul 12, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@haryung-lee is attempting to deploy a commit to a Personal Account on Vercel that is not owned by them.

In order for the commit to be deployed, @haryung-lee must be granted access to the connected Vercel project.

If you're the owner of the Personal Account, transfer the project to a Vercel Team and start collaborating, or learn more.

Please sign in to comment.