11import {
22 buildFeedbackIntegration ,
3- feedbackModalIntegration ,
4- feedbackScreenshotIntegration ,
3+ // feedbackModalIntegration,
4+ // feedbackScreenshotIntegration,
55 getFeedback ,
66 sendFeedback ,
77} from '@sentry-internal/feedback' ;
88import { lazyLoadIntegration } from './utils/lazyLoadIntegration' ;
99
1010// The full feedback widget, with everything pre-loaded
11- const feedbackIntegration = buildFeedbackIntegration ( {
12- lazyLoadIntegration,
13- getModalIntegration : ( ) => feedbackModalIntegration ,
14- getScreenshotIntegration : ( ) => feedbackScreenshotIntegration ,
15- } ) ;
11+ // const feedbackIntegration = buildFeedbackIntegration({
12+ // lazyLoadIntegration,
13+ // getModalIntegration: () => feedbackModalIntegration,
14+ // getScreenshotIntegration: () => feedbackScreenshotIntegration,
15+ // });
1616
1717// This is for users who want to have a lazy-loaded feedback widget
1818const feedbackAsyncIntegration = buildFeedbackIntegration ( {
@@ -21,4 +21,5 @@ const feedbackAsyncIntegration = buildFeedbackIntegration({
2121 getScreenshotIntegration : null ,
2222} ) ;
2323
24+ const feedbackIntegration = feedbackAsyncIntegration ;
2425export { getFeedback , sendFeedback , feedbackIntegration , feedbackAsyncIntegration } ;
0 commit comments