feat: always show PWA install button for testing/styling purposes

This commit is contained in:
Gigi
2025-10-15 18:41:40 +02:00
parent 922d041e0e
commit d7f9cd30eb

View File

@@ -7,7 +7,8 @@ interface BeforeInstallPromptEvent extends Event {
export function usePWAInstall() {
const [deferredPrompt, setDeferredPrompt] = useState<BeforeInstallPromptEvent | null>(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(() => {