From d7f9cd30eb50f9e943d075720f595f1243ee50dd Mon Sep 17 00:00:00 2001 From: Gigi Date: Wed, 15 Oct 2025 18:41:40 +0200 Subject: [PATCH] feat: always show PWA install button for testing/styling purposes --- src/hooks/usePWAInstall.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/hooks/usePWAInstall.ts b/src/hooks/usePWAInstall.ts index ee101fb5..1c5eec87 100644 --- a/src/hooks/usePWAInstall.ts +++ b/src/hooks/usePWAInstall.ts @@ -7,7 +7,8 @@ interface BeforeInstallPromptEvent extends Event { export function usePWAInstall() { const [deferredPrompt, setDeferredPrompt] = useState(null) - const [isInstallable, setIsInstallable] = useState(false) + // TODO: Remove this - temporarily always showing for testing/styling + const [isInstallable, setIsInstallable] = useState(true) const [isInstalled, setIsInstalled] = useState(false) useEffect(() => {