Skip to content

Commit

Permalink
fixing spacing as local linter didnt catch those but the build did
Browse files Browse the repository at this point in the history
  • Loading branch information
bryan-e-lopez committed Mar 15, 2024
1 parent 448db64 commit c6b5dd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions controller/pages/api/util/pewpew.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export async function postPewPew (parsedForm: ParsedForm, authPermissions: AuthP
}
await Promise.all(uploadPromises);
// If latest version is being updated:
if(latest){
if (latest) {
global.currentLatestVersion = version;
try {

Expand Down Expand Up @@ -237,7 +237,7 @@ export async function deletePewPew (query: Partial<Record<string, string | strin
}

export async function getCurrentPewPewLatestVersion (): Promise<string | undefined>{

Check warning on line 239 in controller/pages/api/util/pewpew.ts

View workflow job for this annotation

GitHub Actions / Build project (18.x)

Missing space before opening brace

Check warning on line 239 in controller/pages/api/util/pewpew.ts

View workflow job for this annotation

GitHub Actions / Build project (20.x)

Missing space before opening brace
if(global.currentLatestVersion){
if (global.currentLatestVersion) {
return global.currentLatestVersion;
}
try {
Expand Down

0 comments on commit c6b5dd6

Please sign in to comment.