fix: Correct incomplete $state initialization in multiple Svelte components and pages.
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user