Fix: FormularioAviso Bloqueo Edit Tel. - Limit Request Body 100Mb

This commit is contained in:
2026-04-21 10:25:29 -03:00
parent d8d7e5c2eb
commit 6c53f7fa2e
3 changed files with 8 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ server {
server_name localhost;
# Seguridad: Limitar tamaño de subida para prevenir DoS
client_max_body_size 20M;
client_max_body_size 100M;
# Sitemap dinámico (generado por backend en volumen compartido)
location = /sitemap.xml {

View File

@@ -1376,7 +1376,7 @@ export default function FormularioAviso({
<input
type="text"
value={contactData.phone}
disabled={isAdmin}
disabled
onChange={(e) => {
const val = e.target.value;
setContactData({
@@ -1390,7 +1390,7 @@ export default function FormularioAviso({
placeholder={
isAdmin
? "Selecciona o crea un vendedor arriba"
: "+54 9 221 ..."
: "Modificable en tu perfil"
}
/>