(openTabs: PersistentTab[])
| 141 | }; |
| 142 | |
| 143 | const persistOpenTabs = (openTabs: PersistentTab[]) => { |
| 144 | const scope = currentScope(); |
| 145 | if (!scope) return; |
| 146 | safeWrite( |
| 147 | storageKeySqlEditorTabs(scope.wsScope, scope.project, scope.email), |
| 148 | openTabs |
| 149 | ); |
| 150 | }; |
| 151 | |
| 152 | const persistCurrentTabId = (id: string) => { |
| 153 | const scope = currentScope(); |
no test coverage detected