Set update indicator default state properly.
parent
4a8561b690
commit
431a86c2af
|
|
@ -6,6 +6,7 @@ import { internalSubscribe } from "../../lib/eventEmitter";
|
||||||
import { useContext, useEffect, useState } from "preact/hooks";
|
import { useContext, useEffect, useState } from "preact/hooks";
|
||||||
|
|
||||||
var pendingUpdate = false;
|
var pendingUpdate = false;
|
||||||
|
internalSubscribe('PWA', 'update', () => pendingUpdate = true);
|
||||||
|
|
||||||
export default function UpdateIndicator() {
|
export default function UpdateIndicator() {
|
||||||
const [ pending, setPending ] = useState(pendingUpdate);
|
const [ pending, setPending ] = useState(pendingUpdate);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue