diff --git a/client/homebrew/pages/accountPage/accountPage.jsx b/client/homebrew/pages/accountPage/accountPage.jsx index 9a9512527..644ab13d8 100644 --- a/client/homebrew/pages/accountPage/accountPage.jsx +++ b/client/homebrew/pages/accountPage/accountPage.jsx @@ -43,26 +43,28 @@ const AccountPage = createClass({ renderUiItems : function() { // console.log(this.props.uiItems); - return [ - <> + return <> +
Username: {this.props.uiItems.username || 'No user currently logged in'}
Last Login: {moment(this.props.uiItems.issued).format('dddd, MMMM Do YYYY, h:mm:ss a ZZ') || '-'}
- >, - <> +Brews on Homebrewery: {this.props.uiItems.mongoCount || '-'}
- >, - <> +Linked to Google: {this.props.uiItems.googleId ? 'YES' : 'NO'}
{this.props.uiItems.googleId ?Brews on Google Drive: {this.props.uiItems.fileCount || '-'}
: '' } - > - ]; +This is some test text.
- >; - } - }; - }, - render : function(){ return