From e0c222f25c42ff6eadc868409aefaa160c7b77ba Mon Sep 17 00:00:00 2001
From: Rish <zrishabhgarg@gmail.com>
Date: Tue, 28 Apr 2020 23:31:20 +0530
Subject: [PATCH] Fixed incorrect default page load

no issue

Missed passing `member` param while fetching default page, which then always returns `signup` page even if member is signed in
---
 ghost/portal/src/components/ParentContainer.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ghost/portal/src/components/ParentContainer.js b/ghost/portal/src/components/ParentContainer.js
index 7931da6b88..6cc67b9f8c 100644
--- a/ghost/portal/src/components/ParentContainer.js
+++ b/ghost/portal/src/components/ParentContainer.js
@@ -46,7 +46,7 @@ export default class ParentContainer extends React.Component {
             this.setState({
                 site,
                 member,
-                page: this.getDefaultPage(),
+                page: this.getDefaultPage(member),
                 action: 'init:success',
                 initStatus: 'success'
             });