Skip to content

Commit 4fd85a0

Browse files
Fix Prettier formatting issues
Co-authored-by: kylecarbs <[email protected]>
1 parent 17d34d6 commit 4fd85a0

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/workspaceMonitor.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,13 +172,15 @@ export class WorkspaceMonitor implements vscode.Disposable {
172172
private maybeNotifyOutdated(workspace: Workspace) {
173173
if (!this.notifiedOutdated && workspace.outdated) {
174174
this.notifiedOutdated = true;
175-
175+
176176
// Check if update notifications are disabled
177-
const disableNotifications = vscode.workspace.getConfiguration("coder").get<boolean>("disableUpdateNotifications", false);
177+
const disableNotifications = vscode.workspace
178+
.getConfiguration("coder")
179+
.get<boolean>("disableUpdateNotifications", false);
178180
if (disableNotifications) {
179181
return;
180182
}
181-
183+
182184
this.restClient
183185
.getTemplate(workspace.template_id)
184186
.then((template) => {

0 commit comments

Comments
 (0)