Skip to content

Commit

Permalink
fix: reset timeout setting
Browse files Browse the repository at this point in the history
  • Loading branch information
danpeen committed Dec 27, 2024
1 parent ef040e3 commit 1357b04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/sdk/src/dom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export function createScript(info: {
// Retrieve the existing script element by its src attribute
let script: HTMLScriptElement | null = null;
let needAttach = true;
let timeout = 60000;
let timeout = 20000;
let timeoutId: NodeJS.Timeout;
const scripts = document.getElementsByTagName('script');

Expand Down

0 comments on commit 1357b04

Please sign in to comment.