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(); }