Skip to content

Commit 5bc1859

Browse files
committed
style: fix linting issues
1 parent 3d47831 commit 5bc1859

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/exceptions/FortniteAPIError.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class FortniteAPIError extends Error {
99
* The HTTP method
1010
*/
1111
public method: string;
12-
12+
1313
/**
1414
* The URL of the requested API endpoint
1515
*/
@@ -35,7 +35,7 @@ class FortniteAPIError extends Error {
3535
this.name = 'FortniteAPIError';
3636
this.message = error.error;
3737

38-
this.method = request.method?.toUpperCase() ?? 'GET'
38+
this.method = request.method?.toUpperCase() ?? 'GET';
3939
this.url = request.url!;
4040
this.httpStatus = status;
4141
this.requestParams = request.params;

0 commit comments

Comments
 (0)