Skip to content

Commit

Permalink
Merge pull request #782 from sparcs-kaist/#780-773의-버그-참여-중인-방-버튼이-비활…
Browse files Browse the repository at this point in the history
…성화-되는-경우

Fix: Issue solved
  • Loading branch information
jinhyeonkwon authored Apr 23, 2024
2 parents f37076b + 55fa949 commit 690b86a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ const BodyRoomSelection = ({ roomInfo }: BodyRoomSelectionProps) => {
{isLogin || isRoomFull || isDepart ? (
<Button
type="purple"
disabled={isRoomFull || (isDepart && !isAlreadyPart) || isMaxPart}
disabled={(isRoomFull || isDepart || isMaxPart) && !isAlreadyPart}
css={{
padding: "10px 0 9px",
borderRadius: "8px",
Expand Down

0 comments on commit 690b86a

Please sign in to comment.