diff --git a/modules/turnero/views/recepcion.php b/modules/turnero/views/recepcion.php
index 17e5396..6ecf877 100644
--- a/modules/turnero/views/recepcion.php
+++ b/modules/turnero/views/recepcion.php
@@ -1244,7 +1244,7 @@ async function cargarHistorialPaciente(pacienteId) {
const content = document.getElementById('hist-pac-content');
content.innerHTML = '
Cargando historial…
';
try {
- const res = await fetch(`${API}get_historial.php?paciente_id=${pacienteId}&per_page=15&page=1`);
+ const res = await fetch(`${API}get_historial.php?paciente_id=${pacienteId}&per_page=5&page=1`);
const json = await res.json();
if (!json.ok || !json.turnos || !json.turnos.length) {
content.innerHTML = 'Sin visitas anteriores registradas
';