From fa8be2bc0ff438ab1ebce0c9b0f3d781b29e5524 Mon Sep 17 00:00:00 2001 From: Srinath Narayanan Date: Wed, 10 Nov 2021 03:35:17 -0800 Subject: [PATCH] fixed quickstarts (#1157) --- 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(); }