fix(citycorners): declare searchQuery and searching as $state

Both variables were used with bind:value but not declared.
Svelte 5 requires bind targets to be declared with $state().

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-03-30 19:39:14 +02:00
parent 8049a53a2b
commit 9de71c4be3

View file

@ -27,6 +27,8 @@
let error = $state('');
let geocoding = $state(false);
let imageError = $state(false);
let searchQuery = $state('');
let searching = $state(false);
const categories = [
{ value: 'sight', labelKey: 'category.sight' },