diff --git a/src/app/shelter/page.tsx b/src/app/shelter/page.tsx index 4975300..b606ae0 100644 --- a/src/app/shelter/page.tsx +++ b/src/app/shelter/page.tsx @@ -223,57 +223,92 @@ function Shelter() {

Endereço

+
+
+ ( + + CEP + + { + field.onChange(cepMask(e.target.value)); + }} + onBlur={() => { + if (fieldState.invalid) return; + fetch( + `https://viacep.com.br/ws/${field.value}/json/`, + ) + .then((response) => response.json()) + .then(populateAddressWithViaCepData) + .catch((error) => { + console.log(error); + }); + }} + /> + + + + )} + /> +
+
+ ( + + Logradouro + + + + + + )} + /> +
+
+
+ ( + + Bairro + + + + + + )} + /> + + ( + + Número + + + + + + )} + /> +
( - - CEP - - { - field.onChange(cepMask(e.target.value)); - }} - onBlur={() => { - if (fieldState.invalid) return; - fetch( - `https://viacep.com.br/ws/${field.value}/json/`, - ) - .then((response) => response.json()) - .then(populateAddressWithViaCepData) - .catch((error) => { - console.log(error); - }); - }} - /> - - - - )} - /> - ( - - Rua - - - - - - )} - /> - ( - Bairro + Complemento (opcional) - + @@ -282,12 +317,12 @@ function Shelter() {
( - Número + Cidade - + @@ -315,32 +350,6 @@ function Shelter() { )} />
- ( - - Cidade - - - - - - )} - /> - ( - - Complemento (opcional) - - - - - - )} - />