Skip to content

Commit 31a28e7

Browse files
committed
Remove unnecessary await in restoreView
1 parent 9b59b65 commit 31a28e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/ql-vscode/src/abstract-webview.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export abstract class AbstractWebview<ToMessage extends WebviewMessage, FromMess
3838
public async restoreView(panel: WebviewPanel): Promise<void> {
3939
this.panel = panel;
4040
const config = await this.getPanelConfig();
41-
await this.setupPanel(panel, config);
41+
this.setupPanel(panel, config);
4242
}
4343

4444
protected get isShowingPanel() {

0 commit comments

Comments
 (0)