From a853810b8abf13db7461a856a7fa91c1d76fc3fb Mon Sep 17 00:00:00 2001 From: einhornimmond Date: Sat, 29 Mar 2025 08:55:45 +0100 Subject: [PATCH] fix wrong condition --- frontend/src/components/Overview/CardUserSearch.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/Overview/CardUserSearch.vue b/frontend/src/components/Overview/CardUserSearch.vue index 168233a7d..ab0d71c2d 100644 --- a/frontend/src/components/Overview/CardUserSearch.vue +++ b/frontend/src/components/Overview/CardUserSearch.vue @@ -73,7 +73,7 @@ const gmsAllowed = store.state.gmsAllowed // console.log('gmsAllowed=', gmsAllowed) const gmsUserLocationExists = store.state.userLocation !== null // console.log('gmsUserLocationExists=', gmsUserLocationExists) -const isUserSearchDisabled = computed(() => gmsUri.value !== null) +const isUserSearchDisabled = computed(() => gmsUri.value === null) const { onResult, result, loading, onError } = useQuery(authenticateGmsUserSearch, null, { fetchPolicy: 'network-only',