Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.2.0 배포 #301

Merged
merged 24 commits into from
Dec 13, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
767dc6e
Update README.md
Yaminyam Dec 12, 2022
f5fdc3c
refactor: 오늘날짜와 같은 경우 scoreHistory 업데이트
Yaminyam Dec 12, 2022
3ccffaf
fix: cron 실행시간 timeZone 설정
Yaminyam Dec 13, 2022
5b99fa1
feat: 라인차트 선 아래 영역 시작선선 설정
asdf99245 Dec 13, 2022
940a2d0
feat: 스코어 히스토리 차트 데이터 시간 한국시간으로 고정
asdf99245 Dec 13, 2022
ace985b
design 라인 차트 axis 텍스트 스타일 수정
asdf99245 Dec 13, 2022
0eccc5d
design: 라인차트 axis legend font weight 수정
asdf99245 Dec 13, 2022
d3cd0f0
feat: 업데이트 실패한 유저 조회 시 처리 추가
wkddntjr1123 Dec 13, 2022
556ffd1
feat: 업데이트 싪한 유저 updateDelayTime 추가
wkddntjr1123 Dec 13, 2022
0555424
feat: 업데이트 실패 유저는 조회수 상승 X
wkddntjr1123 Dec 13, 2022
4558def
fix: github 권한 설정 변경
tunggary Dec 13, 2022
29b42d2
fix: ProfileUserResponse type 변경
tunggary Dec 13, 2022
18d22cf
chore: invalid cube 이미지 추가
tunggary Dec 13, 2022
062f8dc
refactor: ranking prefetch 오타 수정
tunggary Dec 13, 2022
fed1908
fix: logout 버그 수정
tunggary Dec 13, 2022
a7e20ef
feat: CubeLogo 컴포넌트 invalid option 추가
tunggary Dec 13, 2022
eb07bf6
refactor: invalid cube path 수정
tunggary Dec 13, 2022
e996502
chore: 국제화 적용
tunggary Dec 13, 2022
295978b
refactor: 오타 수정
tunggary Dec 13, 2022
f8c38a2
feat: 국제화 적용
tunggary Dec 13, 2022
80f3a22
Merge pull request #297 from boostcampwm-2022/refactor/score-history
asdf99245 Dec 13, 2022
07940be
Merge pull request #298 from boostcampwm-2022/fix/score-history
asdf99245 Dec 13, 2022
b06d574
Merge pull request #300 from boostcampwm-2022/refactor/frontend-profile
asdf99245 Dec 13, 2022
669d373
Merge pull request #299 from boostcampwm-2022/feature/error-user-profile
asdf99245 Dec 13, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: 국제화 적용
  • Loading branch information
tunggary committed Dec 13, 2022
commit f8c38a2ed11206593d5901c7998aef7f0d447c40
2 changes: 1 addition & 1 deletion frontend/src/components/Profile/ProfileCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ function ProfileCard({ profileData }: ProfileCardProps) {
<CubeLogo tier={tier} size={'sm'} isInvalid={isInvalid} />
{isInvalid ? (
<RankText>
<p>등수를 표시할 수 없습니다.</p>
<p>{t('profile:invalid-rank')}</p>
</RankText>
) : (
<RankText>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/profile/[username].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ function Profile({ username }: ProfileProps) {
/>
</div>
<strong>Invalid User</strong>
<p>정보를 불러올 수 없는 유저입니다.</p>
<p>{t('profile:invalid-user')}</p>
</Alert>
)}
</>
Expand Down