Small fixes
A selection of 80 fixes from 174 pull requests.
18.A suppressed React update
Switch refs from 0 to 1, then set the new ref to 0: React ignored the notification because its stored state was already 0. Count notifications instead.
1212const [, setValue] = React.useState(ref.value)React.useEffect(() => ref.subscribe(setValue), [ref])const [, forceUpdate] = React.useReducer((n) => n + 1, 0)React.useEffect(() => ref.subscribe(forceUpdate), [ref])