diff --git a/App/Components/Avatar.tsx b/App/Components/Avatar.tsx index f9d86ba0a..8aad3b569 100644 --- a/App/Components/Avatar.tsx +++ b/App/Components/Avatar.tsx @@ -133,7 +133,8 @@ class Avatar extends React.Component { style={{ minHeight: height, minWidth: width, - alignSelf: 'center' + alignSelf: 'center', + backgroundColor: 'transparent' }} source={{ uri: `${Config.RN_TEXTILE_CAFE_GATEWAY_URL}/ipfs/${target}/0/small/d`, @@ -146,7 +147,8 @@ class Avatar extends React.Component { style={{ minHeight: height, minWidth: width, - alignSelf: 'center' + alignSelf: 'center', + backgroundColor: 'transparent' }} target={`${target}/0/${file}/d`} ipfs={true} diff --git a/App/Containers/Groups.tsx b/App/Containers/Groups.tsx index 571f5ebe4..69804a0fd 100644 --- a/App/Containers/Groups.tsx +++ b/App/Containers/Groups.tsx @@ -278,7 +278,8 @@ const mapStateToProps = (state: RootState): StateProps => { name: thread.name, // total number of images in the thread size: thread.photos.length, - members, + // required to ensure up to date index + members: Object.assign([], members), thumb } })