Skip to content

Commit

Permalink
Reduced face change threshold and bumped version to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Virej Dasani authored and Virej Dasani committed May 19, 2022
1 parent 1ece5cc commit bebbc88
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,11 +204,11 @@ class CustomSidebarViewProvider implements vscode.WebviewViewProvider {
let errors = getNumErrors();
if (errors === 0) {
webviewView.webview.html = this.getHtmlContent0(webviewView.webview);
} else if (errors < 10) {
} else if (errors < 5) {
webviewView.webview.html = this.getHtmlContent1(webviewView.webview);
} else if (errors < 20) {
} else if (errors < 10) {
webviewView.webview.html = this.getHtmlContent2(webviewView.webview);
} else if (errors < 30) {
} else {
webviewView.webview.html = this.getHtmlContent3(webviewView.webview);
}
}, 1000);
Expand Down

0 comments on commit bebbc88

Please sign in to comment.