fix: Correct incomplete $state initialization in multiple Svelte components and pages.
This commit is contained in:
@@ -19,8 +19,8 @@
|
||||
|
||||
const client = useConvexClient();
|
||||
|
||||
const anoReferencia = $state(new Date().getFullYear());
|
||||
const observacao = $state('');
|
||||
let anoReferencia = $state(new Date().getFullYear());
|
||||
let observacao = $state('');
|
||||
let periodos = $state<Periodo[]>([]);
|
||||
let processando = $state(false);
|
||||
let erro = $state('');
|
||||
|
||||
Reference in New Issue
Block a user