diff --git a/resources/views/livewire/layout-popups.blade.php b/resources/views/livewire/layout-popups.blade.php
index 3f4436b8b..b2cc76f2f 100644
--- a/resources/views/livewire/layout-popups.blade.php
+++ b/resources/views/livewire/layout-popups.blade.php
@@ -15,7 +15,7 @@
checkPusherInterval = setInterval(() => {
if (window.Echo && window.Echo.connector.pusher.connection.state !== 'connected') {
checkNumber++;
- if (checkNumber > 4) {
+ if (checkNumber > 5) {
this.popups.realtime = true;
console.error(
'Coolify could not connect to its real-time service. This will cause unusual problems on the UI if not fixed! Please check the related documentation (https://coolify.io/docs/knowledge-base/cloudflare/tunnels) or get help on Discord (https://coollabs.io/discord).)'
@@ -23,31 +23,36 @@
clearInterval(checkPusherInterval);
}
}
- }, 1000);
+ }, 2000);
}
}
}">
@auth
-
-
- WARNING: Realtime Error?!
-
-
- Coolify could not connect to its real-time service.
This will cause unusual problems on the UI
- if
- not fixed!
- Please ensure that you have opened the
- required ports,
- check the
- related documentation or get
- help on Discord.
-
-
- Acknowledge & Disable This Popup
-
-
+ @if (!isCloud())
+
+
+ WARNING: Realtime Error?!
+
+
+ Coolify could not connect to its real-time service.
This will cause unusual problems on the
+ UI
+ if
+ not fixed!
+ Please ensure that you have opened the
+ required ports,
+ check the
+ related documentation or get
+ help on Discord.
+
+
+
+ Acknowledge & Disable This Popup
+
+
+ @endif
@endauth