import { wideModalScreenThreshold } from "../ui/ConnectWallet/constants.js"; /** * Return true if the current screen size can fit the wide connect modal * @internal */ export function canFitWideModal(): boolean { if (typeof window !== "undefined") { return window.innerWidth >= wideModalScreenThreshold; } return false; }