Skip to content

Commit 96c8e79

Browse files
Merge pull request #3502 from topcoder-platform/issue-2704
fix loading profile
2 parents a8bc917 + 08c5f05 commit 96c8e79

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/shared/containers/Profile.jsx

+1-4
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,10 @@ class ProfileContainer extends React.Component {
1414
componentDidMount() {
1515
const {
1616
handleParam,
17-
profileForHandle,
1817
loadProfile,
1918
} = this.props;
2019

21-
if (handleParam !== profileForHandle) {
22-
loadProfile(handleParam);
23-
}
20+
loadProfile(handleParam);
2421
}
2522

2623
componentWillReceiveProps(nextProps) {

0 commit comments

Comments
 (0)