I keep getting this issue when I land on the home screen on my app, I'm not 100% why the issue is happening or what could be the cause. I've tried to google this but haven't found anything helpful that could guide me in the right path.
Think it's happening somewhere in this code:
const InstaagramEmpty = () => <InstagramUsersEmpty text="No matching users found" />const InstagramUserItem = (props: { onSelect: () => void, user: InstagramUser }) => { //TOOD: user button return <AccountContainer onPress={props.onSelect}><AccountImage source={{ uri: props.user.photoUrl }} /><Text text={props.user.username} /></AccountContainer>}// Brinds image/text togetherconst SelectionContainer = styled(Row)` `const SelectionClear = styled(ButtonIcon)` width:45px; height:45px; `const InstagramUserSelection = (props: { onSelect: () => void, user: InstagramUser }) => { return <Row drop><SelectionContainer><AccountImage source={{ uri: props.user.photoUrl }} /><Text text={props.user.username} /></SelectionContainer><SelectionClear icon={IconClose} iconTint={Colors.GreyDark} onPress={props.onSelect} /></Row>}