Skip to content

Commit cabf104

Browse files
committed
Lint
1 parent da3ea00 commit cabf104

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

packages/sdk/browser/src/BrowserClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ import {
1515
Platform,
1616
} from '@launchdarkly/js-client-sdk-common';
1717

18+
import { getHref } from './BrowserApi';
1819
import BrowserDataManager from './BrowserDataManager';
1920
import { BrowserIdentifyOptions as LDIdentifyOptions } from './BrowserIdentifyOptions';
2021
import { registerStateDetection } from './BrowserStateDetector';
2122
import GoalManager from './goals/GoalManager';
2223
import { Goal, isClick } from './goals/Goals';
2324
import validateOptions, { BrowserOptions, filterToBaseOptions } from './options';
2425
import BrowserPlatform from './platform/BrowserPlatform';
25-
import { getHref } from './BrowserApi';
2626

2727
/**
2828
*

packages/sdk/browser/src/goals/GoalManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { LDUnexpectedResponseError, Requests } from '@launchdarkly/js-client-sdk-common';
22

3+
import { getHref } from '../BrowserApi';
34
import { Goal } from './Goals';
45
import GoalTracker from './GoalTracker';
56
import { DefaultLocationWatcher, LocationWatcher } from './LocationWatcher';
6-
import { getHref } from '../BrowserApi';
77

88
export default class GoalManager {
99
private goals?: Goal[] = [];

packages/sdk/browser/src/goals/GoalTracker.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
import escapeStringRegexp from 'escape-string-regexp';
22

3-
import { addDocumentEventListener, getHref, getLocationHash, getLocationSearch, querySelectorAll } from '../BrowserApi';
3+
import {
4+
addDocumentEventListener,
5+
getHref,
6+
getLocationHash,
7+
getLocationSearch,
8+
querySelectorAll,
9+
} from '../BrowserApi';
410
import { ClickGoal, Goal, Matcher } from './Goals';
511

612
type EventHandler = (goal: Goal) => void;

0 commit comments

Comments
 (0)