0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-18 18:42:41 +00:00

Remove unnecessary visible from UserPage props

This commit is contained in:
G.Ambatte
2022-09-01 20:06:30 +12:00
parent fc3a599f90
commit 66626b3427
2 changed files with 7 additions and 10 deletions

View File

@@ -40,10 +40,9 @@ const UserPage = createClass({
if(this.props.username == global.account?.username){
brewCollection.push(
{
title : `${usernameWithS} unpublished brews`,
class : 'unpublished',
brews : brews.private,
visible : true
title : `${usernameWithS} unpublished brews`,
class : 'unpublished',
brews : brews.private
}
);
}