We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a002e1e + 7bd2752 commit be73427Copy full SHA for be73427
src/extension.ts
@@ -10,7 +10,7 @@ import { getIngListWebviewProvider } from '@/service/ing/ing-list-webview-provid
10
import { setupUi } from '@/setup/setup-ui'
11
import { LocalState } from '@/ctx/local-state'
12
13
-export function activate(ctx: ExtensionContext) {
+export async function activate(ctx: ExtensionContext) {
14
globalCtx.extCtx = ctx
15
16
// WRN: For old version compatibility, NEVER remove this line
@@ -28,7 +28,7 @@ export function activate(ctx: ExtensionContext) {
28
29
window.registerUriHandler(extUriHandler)
30
31
- void AuthManager.updateAuthStatus()
+ await AuthManager.updateAuthStatus()
32
33
setupUi(LocalState.getExtCfg())
34
0 commit comments