nutshell-platform / app

The react-native (expo) codebase of the Nutshell platform, with CI pipeline to Firebase.
https://nutshell.social/
0 stars 0 forks source link

You can block yourself in profile view #49

Closed actuallymentor closed 4 years ago

actuallymentor commented 4 years ago

In the stateless profile overview, there is a block menu. You need to compare the uid of the profile that is being viewed with the uid of the looged in user. If they equal don't show.


// NOT THIS
if( false ) return <p>ding</p>

<View>
    { uid == user.uid && <Menu /> }
</View>