diff --git a/ghost/portal/src/components/pages/AccountHomePage.js b/ghost/portal/src/components/pages/AccountHomePage.js
index 4fc99b1a55..4612d3114a 100644
--- a/ghost/portal/src/components/pages/AccountHomePage.js
+++ b/ghost/portal/src/components/pages/AccountHomePage.js
@@ -102,10 +102,10 @@ const Divider = () => {
);
};
-const UserAvatar = ({avatar}) => {
+const UserAvatar = ({avatar, brandColor}) => {
return (
-
+
);
};
@@ -129,11 +129,11 @@ const AccountFooter = ({onLogout, onSettings, brandColor}) => {
);
};
-const UserHeader = ({member}) => {
+const UserHeader = ({member, brandColor}) => {
const avatar = member.avatar_image;
return (
-
+
Your Account
);
@@ -192,7 +192,7 @@ class FreeAccountHomePage extends React.Component {
const {member, brandColor} = this.context;
return (
-
+
{this.renderAccountDetail()}
this.handleSignout(e)} onSettings={e => this.openSettings(e)} brandColor={brandColor} />
@@ -320,7 +320,7 @@ class PaidAccountHomePage extends React.Component {
const {member, brandColor} = this.context;
return (
-
+
{this.renderAccountWelcome()}
{this.renderAccountDetails()}