fix: Correct incomplete $state initialization in multiple Svelte components and pages.

This commit is contained in:
2025-12-02 19:18:53 -03:00
parent 4bd9e21748
commit 8a50fb6f61
99 changed files with 520 additions and 519 deletions

View File

@@ -25,9 +25,9 @@
let confirmarSenha = $state('');
let carregando = $state(false);
let notice = $state<{ type: 'success' | 'error'; message: string } | null>(null);
const mostrarSenhaAtual = $state(false);
const mostrarNovaSenha = $state(false);
const mostrarConfirmarSenha = $state(false);
let mostrarSenhaAtual = $state(false);
let mostrarNovaSenha = $state(false);
let mostrarConfirmarSenha = $state(false);
onMount(() => {
if (!currentUser?.data) {