Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
chaosrealm committed Aug 14, 2024
1 parent 3fed54b commit c50ee4e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/api-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,13 @@ export class CortexApiClient {
throw new Error("Request body too large");
}

const url = Path.posix.join(this.apiUrl, this.apiVersion, "org", this.org, path);
const url = Path.posix.join(
this.apiUrl,
this.apiVersion,
"org",
this.org,
path,
);
return fetch(url, {
method,
headers: {
Expand Down

0 comments on commit c50ee4e

Please sign in to comment.