fix: restore isMobile variable definition for responsive text sizing

This commit is contained in:
Russell Ballestrini 2025-07-09 15:23:06 -04:00
parent e3e6e08449
commit b46aedcdf3

View file

@ -194,6 +194,8 @@ async function openUncloseaiEmbeddedModalNew() {
modal.setAttribute("data-theme", theme);
// CSS handles all styling now - no inline styles needed
// But we still need isMobile for some responsive text sizing
const isMobile = window.innerWidth <= 480;
// Simple container with flex layout
const container = document.createElement("div");