We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b83dbe7 commit d589725Copy full SHA for d589725
packages/nextjs/src/components/_common/uxsignalsWidget/UxSignalsWidget.tsx
@@ -28,12 +28,12 @@ export const UxSignalsWidget = ({ embedCode }: UxSignalsWidgetProps) => {
28
addUXSignalsScript();
29
return;
30
}
31
- // Wait max 20 seconds for user respond to the cookie banner
+ // Wait max 60 seconds for user respond to the cookie banner
32
// (userActionTaken) or give up.
33
- if (!userActionTaken && tries < 20) {
+ if (!userActionTaken && tries < 60) {
34
scriptAddTimeout = setTimeout(() => {
35
checkConsentOrWait(tries + 1);
36
- }, 3000);
+ }, 1000);
37
38
};
39
0 commit comments