Skip to content

Commit 7c52b22

Browse files
committed
fix lint
1 parent 6a18b5a commit 7c52b22

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

packages/feedback/src/screenshot/components/ScreenshotEditor.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
/* eslint-disable max-lines */
2+
import type { FeedbackInternalOptions, FeedbackModalIntegration } from '@sentry/core';
23
import type { ComponentType, VNode, h as hType } from 'preact';
4+
// biome-ignore lint/nursery/noUnusedImports: need Preact import for JSX
35
import { h } from 'preact'; // eslint-disable-line @typescript-eslint/no-unused-vars
46
import type * as Hooks from 'preact/hooks';
5-
import { useTakeScreenshotFactory } from './useTakeScreenshot';
6-
import type { FeedbackInternalOptions, FeedbackModalIntegration } from '@sentry/core';
77
import { DOCUMENT, WINDOW } from '../../constants';
8+
import IconCloseFactory from './IconClose';
89
import { createScreenshotInputStyles } from './ScreenshotInput.css';
910
import ToolbarFactory from './Toolbar';
10-
import IconCloseFactory from './IconClose';
11+
import { useTakeScreenshotFactory } from './useTakeScreenshot';
1112

1213
interface FactoryParams {
1314
h: typeof hType;

0 commit comments

Comments
 (0)