Skip to content

feat(feedback): Revamp of user feedback screenshot editing #15424

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
Feb 24, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix lint
  • Loading branch information
c298lee committed Feb 21, 2025
commit 7c52b229eea9c9903d5f20a43896110cb39c31a4
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
/* eslint-disable max-lines */
import type { FeedbackInternalOptions, FeedbackModalIntegration } from '@sentry/core';
import type { ComponentType, VNode, h as hType } from 'preact';
// biome-ignore lint/nursery/noUnusedImports: need Preact import for JSX
import { h } from 'preact'; // eslint-disable-line @typescript-eslint/no-unused-vars
import type * as Hooks from 'preact/hooks';
import { useTakeScreenshotFactory } from './useTakeScreenshot';
import type { FeedbackInternalOptions, FeedbackModalIntegration } from '@sentry/core';
import { DOCUMENT, WINDOW } from '../../constants';
import IconCloseFactory from './IconClose';
import { createScreenshotInputStyles } from './ScreenshotInput.css';
import ToolbarFactory from './Toolbar';
import IconCloseFactory from './IconClose';
import { useTakeScreenshotFactory } from './useTakeScreenshot';

interface FactoryParams {
h: typeof hType;
Expand Down
Loading