diff --git a/src/components/map/Map.tsx b/src/components/map/Map.tsx index 924e72d..9fdfe05 100644 --- a/src/components/map/Map.tsx +++ b/src/components/map/Map.tsx @@ -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 ( // // @ts-ignore -
+
+ diff --git a/src/db-admin/health-legacy.ts b/src/db-admin/health-legacy.ts index 75e63f7..62ae5bb 100644 --- a/src/db-admin/health-legacy.ts +++ b/src/db-admin/health-legacy.ts @@ -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 );