Skip to content

Commit 08708fc

Browse files
committed
[chore] Fix linting issue
1 parent aaa4804 commit 08708fc

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

lib/Context.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,7 @@ export abstract class Context<
6666
Env extends Record<string, any> = {},
6767
State extends Record<string, unknown> = {},
6868
TInput extends TFInput = TFInput,
69-
> implements TriFrostContext<Env, State, TInput>
70-
{
69+
> implements TriFrostContext<Env, State, TInput> {
7170
/**
7271
* MARK: Private
7372
*/
@@ -898,8 +897,8 @@ export abstract class Context<
898897
const normalized = host.startsWith('http://')
899898
? 'https://' + host.slice(7)
900899
: host.startsWith('http')
901-
? host // eslint-disable-line prettier/prettier
902-
: 'https://' + host; // eslint-disable-line prettier/prettier
900+
? host // eslint-disable-line prettier/prettier
901+
: 'https://' + host; // eslint-disable-line prettier/prettier
903902
url = normalized.replace(/\/+$/, '') + '/' + url.replace(/^\/+/, '');
904903
}
905904

0 commit comments

Comments
 (0)