mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 21:21:10 +02:00
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:
parent
8049a53a2b
commit
9de71c4be3
1 changed files with 2 additions and 0 deletions
|
|
@ -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' },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue