Skip to content

Commit 7079068

Browse files
committed
fix no auth thrown error
1 parent c7edf71 commit 7079068

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/containers/Gamification/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class GamificationContainer extends React.Component {
3434
componentDidMount() {
3535
const { auth, loadSkills } = this.props;
3636

37-
if (auth.user.handle && auth.tokenV3) {
37+
if (auth.tokenV3 && auth.user.handle) {
3838
loadSkills(auth.user.handle);
3939
}
4040
}

0 commit comments

Comments
 (0)