File tree 1 file changed +2
-8
lines changed
1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -405,10 +405,7 @@ export default function IntegrationBuilderPage({ files }: { files: Record<string
405
405
{ integration . embedLink && (
406
406
< button
407
407
className = { styles . previewButton }
408
- onClick = { ( ) => {
409
- togglePreviewModal ( integration . embedLink ) ;
410
- setAbortCountdown ( true ) ;
411
- } }
408
+ onClick = { ( ) => togglePreviewModal ( integration . embedLink ) }
412
409
type = "button"
413
410
id = "headerButton"
414
411
>
@@ -417,10 +414,7 @@ export default function IntegrationBuilderPage({ files }: { files: Record<string
417
414
) }
418
415
< button
419
416
className = { styles . copyButton }
420
- onClick = { ( ) => {
421
- window . open ( integration . sourceCodeLink , "_blank" ) ;
422
- setAbortCountdown ( true ) ;
423
- } }
417
+ onClick = { ( ) => window . open ( integration . sourceCodeLink , "_blank" ) }
424
418
type = "button"
425
419
id = "headerButton"
426
420
>
You can’t perform that action at this time.
0 commit comments