1
1
import {
2
2
buildFeedbackIntegration ,
3
- feedbackModalIntegration ,
4
- feedbackScreenshotIntegration ,
3
+ // feedbackModalIntegration,
4
+ // feedbackScreenshotIntegration,
5
5
getFeedback ,
6
6
sendFeedback ,
7
7
} from '@sentry-internal/feedback' ;
8
8
import { lazyLoadIntegration } from './utils/lazyLoadIntegration' ;
9
9
10
10
// 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
+ // });
16
16
17
17
// This is for users who want to have a lazy-loaded feedback widget
18
18
const feedbackAsyncIntegration = buildFeedbackIntegration ( {
@@ -21,4 +21,5 @@ const feedbackAsyncIntegration = buildFeedbackIntegration({
21
21
getScreenshotIntegration : null ,
22
22
} ) ;
23
23
24
+ const feedbackIntegration = feedbackAsyncIntegration ;
24
25
export { getFeedback , sendFeedback , feedbackIntegration , feedbackAsyncIntegration } ;
0 commit comments