removing old comments

This commit is contained in:
João Ferreiro
2022-12-06 15:10:18 +00:00
parent 80b8c7be09
commit 7ef25a600c
2 changed files with 0 additions and 2 deletions
-1
View File
@@ -92,7 +92,6 @@ export function UserAvatar({
// setUserAvatar is only passed as prop on the EditProfile component
return setUserAvatar != null && IMAGES_ENABLED ? (
<TouchableOpacity onPress={handleEditAvatar}>
{/* Added a react state temporary photo while the protocol does not support imagery */}
{userAvatar != null ? (
<Image style={styles.avatarImage} source={{uri: userAvatar}} />
) : (
-1
View File
@@ -81,7 +81,6 @@ export function UserBanner({
// setUserBanner is only passed as prop on the EditProfile component
return setUserBanner != null && IMAGES_ENABLED ? (
<TouchableOpacity onPress={handleEditBanner}>
{/* Added a react state temporary photo while the protocol does not support imagery */}
{userBanner != null ? (
<Image style={styles.bannerImage} source={{uri: userBanner}} />
) : (