Skip to content

Commit

Permalink
run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewLuGit committed May 21, 2024
1 parent 61c0bb6 commit 2e64f2a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { promisify } from "util";
import { TreeDataProvider } from "./views/tree-view";
import {
getWebviewContent,
fetchKernelVersionNonCLIDependent
fetchKernelVersionNonCLIDependent,
} from "./views/welcome-view";
import {
buildUpload,
Expand Down Expand Up @@ -377,7 +377,9 @@ export async function activate(context: vscode.ExtensionContext) {
// This gets the kernel version so we can display it on the welcome page
const newKernel = await fetchKernelVersionNonCLIDependent();
// This gets the CLI version so we can display it on the welcome page
const newCli = await getCurrentReleaseVersion("https://api.github.com/repos/purduesigbots/pros-cli/releases/latest");
const newCli = await getCurrentReleaseVersion(
"https://api.github.com/repos/purduesigbots/pros-cli/releases/latest"
);

// Setup google analytics preference and welcome page display preference
const useGoogleAnalytics =
Expand Down

0 comments on commit 2e64f2a

Please sign in to comment.