Skip to content

Commit 2274a5f

Browse files
authored
chore: remove unnecessary await (#261)
chore: remove unecessary await
1 parent 53edd41 commit 2274a5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/get-config-file.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export async function getConfigFile(
4343
// this can be just `ref` once https://github.com/octokit/endpoint.js/issues/206 is resolved
4444
...(ref ? { ref } : {}),
4545
};
46-
const { url } = await octokit.request.endpoint(endpoint);
46+
const { url } = octokit.request.endpoint(endpoint);
4747
const emptyConfigResult = {
4848
owner,
4949
repo,

0 commit comments

Comments
 (0)