From 19a1a2e7371b62ee738a711248f1063aa0a51770 Mon Sep 17 00:00:00 2001 From: Dawn Choo Date: Fri, 18 Oct 2024 10:20:55 -0400 Subject: [PATCH] updated --- packages/notebook-extension/src/index.ts | 36 ++++++++++++------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/packages/notebook-extension/src/index.ts b/packages/notebook-extension/src/index.ts index 949040ef6e..b425796163 100644 --- a/packages/notebook-extension/src/index.ts +++ b/packages/notebook-extension/src/index.ts @@ -589,22 +589,6 @@ const editNotebookMetadata: JupyterFrontEndPlugin = { }, }; -/** - * Export the plugins as default. - */ -const plugins: JupyterFrontEndPlugin[] = [ - checkpoints, - closeTab, - openTreeTab, - editNotebookMetadata, - kernelLogo, - kernelStatus, - notebookToolsWidget, - scrollOutput, - tabIcon, - trusted, -]; - /** * A plugin to add a "test" title at the top of the notebook. */ @@ -622,7 +606,23 @@ const addTestTitle: JupyterFrontEndPlugin = { } }; -// Add this to the plugins array -plugins.push(addTestTitle); + +/** + * Export the plugins as default. + */ +const plugins: JupyterFrontEndPlugin[] = [ + checkpoints, + closeTab, + openTreeTab, + editNotebookMetadata, + kernelLogo, + kernelStatus, + notebookToolsWidget, + scrollOutput, + tabIcon, + trusted, + addTestTitle +]; + export default plugins;