Removing a condition that doesn't seem necessary before deleting docs.x

This commit is contained in:
Eric van der Vlist 2023-02-15 15:37:45 +01:00
parent 937fd885fa
commit 951deb5fef
2 changed files with 5 additions and 4 deletions

View File

@ -45,6 +45,7 @@ import Account from '../account';
import { Overlays } from '../overlays/Overlays';
import Finder, { findLocation } from '../finder';
import { ZoomIn } from '@suid/icons-material';
import Note from '../note';
const [getState, setState] = createSignal({
lon: 0,
@ -295,8 +296,9 @@ const Map: Component = () => {
return (
//<OsmFetch map={getMap} />
// @ts-ignore
<div class='ol-map' ref={target}>
<div class="ol-map" ref={target}>
<Overlays map={getMap} />
<Note />
<Finder />
<GetLocation />
<Show when={window.Capacitor.platform !== 'web'}>

View File

@ -221,9 +221,8 @@ export const watchDbLegacy = async () => {
while (true) {
await until(
() =>
state()?.sync?.paused &&
state()?.sync?.lastSeq >= state()?.localUpdateSeq - 1, // I wonder why this can happen !
() => state()?.sync?.paused, //&&
//state()?.sync?.lastSeq >= state()?.localUpdateSeq - 1, // I wonder why this can happen !
1000
);