From a9d38cdb3b5e60597c2dd41863819fc925a45a75 Mon Sep 17 00:00:00 2001 From: Srinath Narayanan Date: Tue, 9 Nov 2021 20:00:14 +0530 Subject: [PATCH] fixed quickstarts --- src/Explorer/Explorer.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/Explorer/Explorer.tsx b/src/Explorer/Explorer.tsx index 99c839a45..f100d7b7a 100644 --- a/src/Explorer/Explorer.tsx +++ b/src/Explorer/Explorer.tsx @@ -1204,10 +1204,9 @@ export default class Explorer { } public async handleOpenFileAction(path: string): Promise { - if ( - userContext.features.phoenix === false && - !(await this._containsDefaultNotebookWorkspace(userContext.databaseAccount)) - ) { + if (userContext.features.phoenix) { + await this.allocateContainer(); + } else if (!(await this._containsDefaultNotebookWorkspace(userContext.databaseAccount))) { this._openSetupNotebooksPaneForQuickstart(); }