From 9c3dbbf0ea4b94af3f363a8ec85ea51bf652f53f Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Sat, 22 Jun 2024 14:53:42 +0100 Subject: [PATCH] nanostores fixes --- src/stores/location.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stores/location.ts b/src/stores/location.ts index d6db50a0..0aed10ef 100644 --- a/src/stores/location.ts +++ b/src/stores/location.ts @@ -19,6 +19,6 @@ export type LocationStore = const url = 'https://location.kremalicious.com' export const $location = createFetcherStore([url], { - refetchOnReconnect: true, - refetchOnFocus: true + revalidateOnReconnect: true, + revalidateOnFocus: true })