I turned on debug for JEvents and I see the error "2 Duplicates Found #15 & #16" The query is below:
SELECT m.id, m.title, m.module, m.position, m.content, m.showtitle, m.params, mm.menuid
FROM xp5gb_modules AS m
LEFT JOIN xp5gb_modules_menu AS mm
ON mm.moduleid = m.id
LEFT JOIN xp5gb_extensions AS e
ON e.element = m.module
AND e.client_id = m.client_id
WHERE m.published = 1
AND e.enabled = 1
AND (m.publish_up = '0000-00-00 00:00:00' OR m.publish_up <= '2021-07-20 20:18:50')
AND (m.publish_down = '0000-00-00 00:00:00' OR m.publish_down >= '2021-07-20 20:18:50')
AND m.access IN (1,1,5)
AND m.client_id = 0
AND (mm.menuid = 0 OR mm.menuid <= 0)
ORDER BY m.position, m.ordering
I'm not sure how helpful that is for the issue I'm having. Thank you!