Skip to content

Commit ae53b77

Browse files
committed
Format
1 parent ecf0637 commit ae53b77

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

packages/auth/src/api/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,9 +169,9 @@ async function performApiRequest<T, V>(
169169
}
170170

171171
const queryParamString = querystring({
172-
key: auth.config.apiKey,
173-
...params
174-
}).slice(1);
172+
key: auth.config.apiKey,
173+
...params
174+
}).slice(1);
175175

176176
const headers = await (auth as AuthInternal)._getAdditionalHeaders();
177177
headers[HttpHeader.CONTENT_TYPE] = 'application/json';

packages/auth/test/helpers/api/helper.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export function mockRegionalEndpointWithParent(
6464
status = 200
6565
): Route {
6666
let url = `${TEST_SCHEME}://${TEST_HOST}${parent}${endpoint}`;
67-
url += "?key=";
68-
url += key;
67+
url += '?key=';
68+
url += key;
6969
return mock(url, response, status);
7070
}

0 commit comments

Comments
 (0)