Disable rooms on mobile temporarily

This commit is contained in:
mplorentz
2026-03-03 16:04:42 -05:00
committed by hodlbod
parent 6330150c66
commit 1b99ed6704
2 changed files with 8 additions and 0 deletions
+3
View File
@@ -80,6 +80,9 @@ export const createScroller = ({
export const isMobile = "ontouchstart" in document.documentElement
// Remove this when we implement voice rooms on mobile
export const isMobileViewport = () => window.innerWidth <= 768
export const downloadText = (filename: string, text: string) => {
const blob = new Blob([text], {type: "text/plain"})
const url = URL.createObjectURL(blob)