diff --git a/frontend/package.json b/frontend/package.json
index 788682b..f684c10 100644
--- a/frontend/package.json
+++ b/frontend/package.json
@@ -1,7 +1,7 @@
{
"name": "checklist-frontend",
"private": true,
- "version": "1.0.89",
+ "version": "1.0.90",
"type": "module",
"scripts": {
"dev": "vite",
diff --git a/frontend/public/service-worker.js b/frontend/public/service-worker.js
index 8886a97..778ea53 100644
--- a/frontend/public/service-worker.js
+++ b/frontend/public/service-worker.js
@@ -1,6 +1,6 @@
// Service Worker para PWA con detecci贸n de actualizaciones
// IMPORTANTE: Actualizar esta versi贸n cada vez que se despliegue una nueva versi贸n
-const CACHE_NAME = 'ayutec-v1.0.89';
+const CACHE_NAME = 'ayutec-v1.0.90';
const urlsToCache = [
'/',
'/index.html'
diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx
index 3ccc4b9..2aa95c1 100644
--- a/frontend/src/App.jsx
+++ b/frontend/src/App.jsx
@@ -4921,8 +4921,8 @@ function InspectionModal({ checklist, existingInspection, user, onClose, onCompl
- {/* Answer input based on type - NO mostrar para photo_only */}
- {currentQuestion.options?.type !== 'photo_only' && (
+ {/* Answer input based on type - NO mostrar para photo_only ni ai_assistant */}
+ {currentQuestion.options?.type !== 'photo_only' && currentQuestion.options?.type !== 'ai_assistant' && (
)}
- {/* Observations - NO mostrar para photo_only */}
- {currentQuestion.options?.type !== 'photo_only' && (
+ {/* Bot贸n de Chat IA - Mostrar SIEMPRE si es tipo ai_assistant */}
+ {currentQuestion.options?.type === 'ai_assistant' && (
+