We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ac8a90 commit 014df70Copy full SHA for 014df70
src/pages/quick-start/index.tsx
@@ -360,21 +360,15 @@ export default function IntegrationBuilderPage({ files }: { files: Record<string
360
{integration.embedLink && (
361
<button
362
className={styles.previewButton2}
363
- onClick={() => {
364
- togglePreviewModal(integration.embedLink);
365
- setAbortCountdown(true);
366
- }}
+ onClick={() => togglePreviewModal(integration.embedLink)}
367
type="button"
368
>
369
Preview
370
</button>
371
)}
372
373
className={styles.copyButton2}
374
375
- window.open(integration.sourceCodeLink, "_blank");
376
377
+ onClick={() => window.open(integration.sourceCodeLink, "_blank")}
378
379
380
Source Code
0 commit comments