Hotfix/fix user image 2
@@ -1,9 +1,13 @@
# CHANGES
-## v3.7.4-RC
+## v3.7.5
*
+## v3.7.4
+
+* Fix: Broken by displaying user image
## v3.7.3
* Feature: Profile Image Cropping
@@ -70,6 +70,9 @@ export default class PersonalContainer extends Container {
* define a function for uploaded picture
*/
getUploadedPictureSrc(user) {
+ if (user == null) {
+ return DEFAULT_IMAGE;
+ }
if (user.image) {
this.setState({ isUploadedPicture: true });
return user.image;