Skip to content

Commit d18a401

Browse files
committed
feedback lint
1 parent ad0bc13 commit d18a401

File tree

6 files changed

+3
-6
lines changed

6 files changed

+3
-6
lines changed

packages/feedback/src/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { GLOBAL_OBJ } from "@sentry/utils";
1+
import { GLOBAL_OBJ } from '@sentry/utils';
22

33
// exporting a separate copy of `WINDOW` rather than exporting the one from `@sentry/browser`
44
// prevents the browser package from being bundled in the CDN bundle, and avoids a

packages/feedback/src/integration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { WINDOW } from './constants';
21
import type { Integration } from '@sentry/types';
32
import { isBrowser, logger } from '@sentry/utils';
43

@@ -15,6 +14,7 @@ import {
1514
NAME_PLACEHOLDER,
1615
SUBMIT_BUTTON_LABEL,
1716
SUCCESS_MESSAGE_TEXT,
17+
WINDOW,
1818
} from './constants';
1919
import type { FeedbackInternalOptions, FeedbackWidget, OptionalFeedbackConfiguration } from './types';
2020
import { mergeOptions } from './util/mergeOptions';

packages/feedback/src/widget/Icon.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { WINDOW } from '../constants';
2-
32
import { setAttributesNS } from '../util/setAttributesNS';
43

54
const SIZE = 20;

packages/feedback/src/widget/Logo.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { WINDOW } from '../constants';
2-
32
import type { FeedbackInternalOptions } from '../types';
43
import { setAttributesNS } from '../util/setAttributesNS';
54

packages/feedback/src/widget/SuccessIcon.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { WINDOW } from '../constants';
2-
32
import { setAttributesNS } from '../util/setAttributesNS';
43

54
const WIDTH = 16;

packages/feedback/src/widget/createShadowHost.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { WINDOW } from '../constants';
21
import { logger } from '@sentry/utils';
32

3+
import { WINDOW } from '../constants';
44
import type { FeedbackInternalOptions } from '../types';
55
import { createDialogStyles } from './Dialog.css';
66
import { createMainStyles } from './Main.css';

0 commit comments

Comments
 (0)