chat-ui-custom / src /lib /utils /isDesktop.ts
that1cooldude
Initial chat-ui deployment without binary files
973a4e3
Raw
History Blame Contribute Delete
211 Bytes
// Approximate width from which we disable autofocus
const TABLET_VIEWPORT_WIDTH = 768;
export function isDesktop(window: Window) {
const { innerWidth } = window;
return innerWidth > TABLET_VIEWPORT_WIDTH;
}