Skip to content

Commit 0f1b02b

Browse files
committed
fixes
1 parent 7a7112d commit 0f1b02b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/app/apps/codebattle/assets/js/widgets/pages/lobby/SeasonProfilePanel.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ const SeasonOpponents = ({ user, opponents }) => {
9898
return () => { };
9999
}, [dispatch, setLoading, user?.points]);
100100

101-
if (user.points || (!loading && opponents.length === 0)) {
101+
if (!user.points || (!loading && opponents.length === 0)) {
102102
return <></>;
103103
}
104104

0 commit comments

Comments
 (0)