Skip to content

Commit

Permalink
Merge pull request #208 from prgrms-web-devcourse-final-project/docs/#…
Browse files Browse the repository at this point in the history
…207

Docs/#207 워크플로우 문서 수정
  • Loading branch information
w-ho-choo authored Dec 10, 2024
2 parents d53cd4b + 2c83813 commit 931572c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
env:
VITE_MAP_API_KEY: ${{ secrets.VITE_MAP_API_KEY }}
VITE_API_ENDPOINT: ${{ secrets.VITE_API_ENDPOINT }}
VITE_TOKEN: ${{ secrets.VITE_TOKEN }}
VITE_SOCKET_ENDPOINT: ${{ secrets.VITE_SOCKET_ENDPOINT }}
run: vite build

- name: AWS Resource에 접근할 수 있게 AWS credentials 설정
Expand All @@ -43,4 +43,4 @@ jobs:
aws s3 cp ./dist s3://catchmi-web-page/ --recursive
- name: Cloudfront 캐시 무효화
run: aws cloudfront create-invalidation --distribution-id E27N31R2646KQX --paths "/*"
run: aws cloudfront create-invalidation --distribution-id E27N31R2646KQX --paths "/*"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ npm run build

### 1. 이슈 생성

- 프로젝트의 기능 추가나 버그 수정을 위해 [Issues](https://github.com/your-repo/issues) 탭에 새로운 이슈를 생성합니다.
- 프로젝트의 기능 추가나 버그 수정을 위해 [Issues](https://github.com/prgrms-web-devcourse-final-project/WEB1_2_PitchingMate_FE/issues) 탭에 새로운 이슈를 생성합니다.

### 2. 브랜치 생성

Expand Down
2 changes: 1 addition & 1 deletion src/apis/loginService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const loginPost = async (email: string): Promise<LoginResponseData> => {
localStorage.setItem('token', accessToken)
// localStorage.setItem('refreshToken', refreshToken);

console.log('로그인 성공:', response.data)
// console.log('로그인 성공:', response.data)
const { age, gender, memberId, nickname, teamId } = response.data

// 상태 업데이트
Expand Down
4 changes: 2 additions & 2 deletions src/pages/LoginPage/SignupPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const SignupPage = () => {
onChange={(fieldName, value) => {
if (fieldName === '닉네임') {
setNickname(value)
console.log('닉네임: ', value)
// console.log('닉네임: ', value)
}
}}
/>
Expand All @@ -80,7 +80,7 @@ const SignupPage = () => {
<TeamSelectModal
onTeamSelect={(team) => {
setSelectedTeamId(team.teamId)
console.log('선택한 팀 id: ', team.teamId)
// console.log('선택한 팀 id: ', team.teamId)
}}
/>
</FieldWrapper>
Expand Down

0 comments on commit 931572c

Please sign in to comment.