Skip to content

Commit

Permalink
feat(global): 모드 아이템 이름 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
nyj001012 committed Mar 13, 2024
1 parent 08d502e commit 06eee99
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions frontend/src/global.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const AVATAR_FILE_NAME = [

export const MODE = {
casual: "캐주얼 모드",
casual_tournament: "캐주얼 토너먼트 모드",
rank: "랭크 토너먼트 모드",
casual_tournament: "토너먼트 모드",
rank: "랭크 토너먼트",
one_on_one: "1 vs 1 모드",
};
2 changes: 1 addition & 1 deletion frontend/src/pages/histories/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function Histories($container) {
<div class="histories casual-toggle" id="toggle">
<ul class="histories">
<li>${MODE.one_on_one}</li>
<li>${MODE.rank}</li>
<li>${MODE.casual_tournament}</li>
</ul>
</div>
</div>
Expand Down

0 comments on commit 06eee99

Please sign in to comment.