File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -69,6 +69,8 @@ export const feedbackModalIntegration = ((): FeedbackModalIntegration => {
6969 defaultEmail = { ( userKey && user && user [ userKey . email ] ) || '' }
7070 successMessageText = { options . successMessageText }
7171 isRequiredLabel = { options . isRequiredLabel }
72+ addScreenshotButtonLabel = { options . addScreenshotButtonLabel }
73+ removeScreenshotButtonLabel = { options . removeScreenshotButtonLabel }
7274 onFormClose = { ( ) => {
7375 renderContent ( false ) ;
7476 options . onFormClose && options . onFormClose ( ) ;
Original file line number Diff line number Diff line change 1- import type { FeedbackDialog } from '@sentry/types' ;
1+ import type { FeedbackDialog , FeedbackInternalOptions } from '@sentry/types' ;
22/* eslint-disable max-lines */
33import type { ComponentType , VNode , h as hType } from 'preact' ;
44// biome-ignore lint: needed for preact
@@ -17,6 +17,7 @@ interface FactoryParams {
1717 h : typeof hType ;
1818 imageBuffer : HTMLCanvasElement ;
1919 dialog : FeedbackDialog ;
20+ options : FeedbackInternalOptions ;
2021}
2122
2223interface Props {
You can’t perform that action at this time.
0 commit comments