File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments