(id: string)
| 150 | }; |
| 151 | |
| 152 | const persistCurrentTabId = (id: string) => { |
| 153 | const scope = currentScope(); |
| 154 | if (!scope) return; |
| 155 | safeWrite( |
| 156 | storageKeySqlEditorCurrentTab(scope.wsScope, scope.project, scope.email), |
| 157 | id |
| 158 | ); |
| 159 | }; |
| 160 | |
| 161 | const readOpenTabs = ( |
| 162 | wsScope: string, |
no test coverage detected