From b0d6e4f134cb10d999d078f7ad9e2f7bd69257be Mon Sep 17 00:00:00 2001 From: Tobi Date: Tue, 9 Apr 2024 10:42:43 +0200 Subject: [PATCH] debudding PWA --- index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/index.html b/index.html index d2dde64..da2b03c 100644 --- a/index.html +++ b/index.html @@ -169,6 +169,7 @@ // Hide installation instructions once installed as standalone PWA window.addEventListener('beforeinstallprompt', (event) => { + event.preventDefault(); // Prevent default browser prompt document.getElementById('install-instructions').style.display = 'none'; });