Skip to content

Commit ae878fa

Browse files
committed
style(licensing): prettier autofix on endpoint.ts
1 parent cc9314c commit ae878fa

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

src/licensing/endpoint.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,8 @@
1919
declare const __LICENSE_ENDPOINT_ENCODED__: string;
2020
declare const __LICENSE_ENDPOINT_XOR_KEY__: string;
2121

22-
const encodedEP =
23-
typeof __LICENSE_ENDPOINT_ENCODED__ === 'string' ? __LICENSE_ENDPOINT_ENCODED__ : '';
24-
const xorKey =
25-
typeof __LICENSE_ENDPOINT_XOR_KEY__ === 'string' ? __LICENSE_ENDPOINT_XOR_KEY__ : '';
22+
const encodedEP = typeof __LICENSE_ENDPOINT_ENCODED__ === 'string' ? __LICENSE_ENDPOINT_ENCODED__ : '';
23+
const xorKey = typeof __LICENSE_ENDPOINT_XOR_KEY__ === 'string' ? __LICENSE_ENDPOINT_XOR_KEY__ : '';
2624

2725
export function resolveEndpoint(): string {
2826
if (encodedEP && xorKey) {

0 commit comments

Comments
 (0)