Commit 272112c 1 parent df8e246 commit 272112c Copy full SHA for 272112c
File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ const GameResult = () => {
16
16
< div css = { gameResultTitleWrapper } >
17
17
< h1 css = { gameResultTitle } > 게임 결과</ h1 >
18
18
</ div >
19
- < Button text = "확인" active = { true } onClick = { goToHome } />
19
+ < Button text = "확인" onClick = { goToHome } />
20
20
</ div >
21
21
) ;
22
22
} ;
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ const SelectContainer = () => {
39
39
handleSelectOption = { handleSelectOption }
40
40
/>
41
41
</ section >
42
- < Button text = "선택" active = { Boolean ( selectedId ) } onClick = { goToRoundResult } />
42
+ < Button text = "선택" disabled = { Boolean ( selectedId ) } onClick = { goToRoundResult } />
43
43
</ div >
44
44
) }
45
45
</ >
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ const RoundResultPage = () => {
22
22
< div css = { NicknameListWrapper } >
23
23
< NicknameList />
24
24
</ div >
25
- < Button text = "다음" active = { true } onClick = { goToGameResult } />
25
+ < Button text = "다음" onClick = { goToGameResult } />
26
26
</ Content >
27
27
) ;
28
28
} ;
You can’t perform that action at this time.
0 commit comments