Browse Source

Merge pull request #6644 from afshin/issue-6637

Remove obsolete command use in application extension.
Jason Grout 5 years ago
parent
commit
55b7a1c0f7
1 changed files with 0 additions and 2 deletions
  1. 0 2
      packages/application-extension/src/index.tsx

+ 0 - 2
packages/application-extension/src/index.tsx

@@ -271,14 +271,12 @@ const tree: JupyterFrontEndPlugin<void> = {
             : paths.urls.app) +
           args.search +
           args.hash;
-        const immediate = true;
 
         // Remove the tree portion of the URL leaving the rest intact.
         router.navigate(url);
 
         try {
           await commands.execute('filebrowser:navigate', { path });
-          await commands.execute('apputils:save-statedb', { immediate });
         } catch (error) {
           console.warn('Tree routing failed.', error);
         }