Skip to content

Commit e702082

Browse files
committed
fix lint
1 parent 333bf0d commit e702082

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

packages/feedback/src/modal/integration.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { getCurrentScope } from '@sentry/core';
22
import type { IntegrationFn } from '@sentry/types';
3-
import { h, render } from 'preact';
3+
// biome-ignore lint/nursery/noUnusedImports: reason
4+
import { h, render } from 'preact'; // eslint-disable-line @typescript-eslint/no-unused-vars
45
import { DOCUMENT } from '../constants';
56
import type { CreateDialogProps, FeedbackFormData, FeedbackModalIntegration } from '../types';
67
import { Dialog } from './components/Dialog';

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint-disable max-lines */
2-
import type { ComponentType, VNode, h as hType } from 'preact';
2+
import type { ComponentType, VNode } from 'preact';
33
// biome-ignore lint/nursery/noUnusedImports: reason
44
import { h } from 'preact'; // eslint-disable-line @typescript-eslint/no-unused-vars
55
import { useCallback, useEffect, useMemo, useRef, useState } from 'preact/hooks';

0 commit comments

Comments
 (0)