diff --git a/client/homebrew/pages/accountPage/accountPage.jsx b/client/homebrew/pages/accountPage/accountPage.jsx index 5a19ce195..2154956e9 100644 --- a/client/homebrew/pages/accountPage/accountPage.jsx +++ b/client/homebrew/pages/accountPage/accountPage.jsx @@ -27,7 +27,7 @@ const AccountPage = createClass({ }; }, - navItems : function() { + renderNavItems : function() { return @@ -38,9 +38,9 @@ const AccountPage = createClass({ ; }, - uiItems : function() { + renderUiItems : function() { // console.log(JSON.stringify(this.props.uiItems)); - const result = <> + return <>

Account Information

Username: {this.props.uiItems.username || 'No user currently logged in'}

Last Login: {this.props.uiItems.issued || '-'}

@@ -52,12 +52,10 @@ const AccountPage = createClass({

Linked to Google: {this.props.uiItems.googleId ? 'YES' : 'NO'}

{this.props.uiItems.googleId ?

Brews on Google Drive: {this.props.uiItems.fileCount || '-'}

: '' } ; - - return result; }, render : function(){ - return ; + return ; } });