From f273debb8709f22d0ddce9761e3de9c416777e6e Mon Sep 17 00:00:00 2001 From: Vasilii Mikhailovskii Date: Sun, 8 Dec 2024 22:33:12 +0200 Subject: [PATCH] fix --- apps/frontend/src/components/ChatSubscribeWebPush.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/frontend/src/components/ChatSubscribeWebPush.vue b/apps/frontend/src/components/ChatSubscribeWebPush.vue index daf19c0..f139b2d 100644 --- a/apps/frontend/src/components/ChatSubscribeWebPush.vue +++ b/apps/frontend/src/components/ChatSubscribeWebPush.vue @@ -249,6 +249,6 @@ watch( ) const showRequireStandaloneInstructionsForIOS = computed( - () => true, //isError.value && isIOS.value && !isStandalone.value && enabled.value, + () => isError.value && isIOS.value && !isStandalone.value && enabled.value, )