Skip to content

Commit 619a3cf

Browse files
committed
style: fix biome formatting
1 parent acf0307 commit 619a3cf

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/utils/api/client.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,10 @@ export function ignoreNotificationThreadSubscription(
135135
*
136136
* Endpoint documentation: https://docs.github.com/en/rest/commits/commits#get-a-commit
137137
*/
138-
export function getCommit(url: Link, token: Token): Promise<AxiosResponse<RawCommit>> {
138+
export function getCommit(
139+
url: Link,
140+
token: Token,
141+
): Promise<AxiosResponse<RawCommit>> {
139142
return apiRequestAuth(url, 'GET', token);
140143
}
141144

@@ -157,7 +160,10 @@ export function getCommitComment(
157160
*
158161
* Endpoint documentation: https://docs.github.com/en/rest/releases/releases#get-a-release
159162
*/
160-
export function getRelease(url: Link, token: Token): Promise<AxiosResponse<RawRelease>> {
163+
export function getRelease(
164+
url: Link,
165+
token: Token,
166+
): Promise<AxiosResponse<RawRelease>> {
161167
return apiRequestAuth(url, 'GET', token);
162168
}
163169

0 commit comments

Comments
 (0)