Confirmed that I am able to navigate to and back from this new "screen".
I created this test function in `RelationshipListItem`:
```
onPressTestNav = userInfo => {
this.props.navigate<'UserProfileBottomSheet'>({
name: UserProfileBottomSheetRouteName,
params: {
userID: userInfo.id,
},
});
};
```
and got the following:
{F746625}