make phone calls
This commit is contained in:
@ -4,6 +4,10 @@ import { IoDownloadOutline } from "react-icons/io5";
|
||||
export default function ServiceWorkerUpdateNotifier() {
|
||||
const [hasUpdate, setHasUpdate] = useState(false);
|
||||
useEffect(() => {
|
||||
if (!("serviceWorker" in navigator)) {
|
||||
return;
|
||||
}
|
||||
|
||||
(async () => {
|
||||
const registration = await navigator.serviceWorker.getRegistration();
|
||||
if (!registration) {
|
||||
|
Reference in New Issue
Block a user