Skip to content

Commit

Permalink
Fix: Issue solved
Browse files Browse the repository at this point in the history
  • Loading branch information
jinhyeonkwon authored Apr 23, 2024
1 parent f37076b commit 55fa949
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 55fa949

Please sign in to comment.