Skip to content

Commit c1a4ff2

Browse files
pre-commit-ci[bot]3coins
authored andcommitted
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent d08e3e6 commit c1a4ff2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ async function activatePlugin(
135135
// Try calling an API to verify that the server extension is actually installed
136136
let serverExtensionOk = false;
137137
try{
138-
await api.getJobs({ max_items: 0 })
138+
await api.getJobs({ max_items: 0 })
139139
serverExtensionOk = true;
140140
} catch (responseError: unknown) {
141141
const responseCode = (responseError as ServerConnection.ResponseError).response.status;
@@ -152,7 +152,7 @@ async function activatePlugin(
152152
serverExtensionOk = true;
153153
}
154154
}
155-
155+
156156
if (!serverExtensionOk) {
157157
return; // Don't activate the rest of the plugin
158158
}

0 commit comments

Comments
 (0)